Skip to content

Latest commit

 

History

History
69 lines (44 loc) · 2.19 KB

File metadata and controls

69 lines (44 loc) · 2.19 KB
layout title description keywords needAutoGenerateSidebar
default-layout
class CCapturedResultItem - Dynamsoft Core Module C++ Edition API Reference
This page shows the C++ edition of the class CCapturedResultItem in Dynamsoft Core Module.
captured result item, c++
true

CCapturedResultItem

The CCapturedResultItem class represents an item in a captured result. It is an abstract base class with multiple subclasses, each representing a different type of captured item such as barcode, text line, detected quad, normalized image, raw image, parsed item, etc.

Definition

Namespace: dynamsoft::basic_structures

Assembly: DynamsoftCore

class CCapturedResultItem 

Methods Summary

Method Description
~CCapturedResultItem This is the class destructor.
GetType Gets the type of the captured result item.
GetReferencedItem Gets a pointer to the referenced item in the captured result.

CCapturedResultItem Destructor

This is the class destructor.

virtual ~CCapturedResultItem(){};

GetType

Gets the type of the captured result item.

virtual CapturedResultItemType GetType() const

Return value

Returns the type of the captured result item.

See Also

[CapturedResultItemType]({{ site.dcv_enumerations }}core/captured-result-item-type.html?src=cpp&&lang=cpp)

GetReferencedItem

Gets a pointer to the referenced item in the captured result item.

virtual const CCapturedResultItem* GetReferencedItem() const

Return value

Returns a pointer to the referenced item in the captured result item. You are not required to release the memory pointed to by the returned pointer.

See Also

[CCapturedResultItem]({{ site.dcv_cpp_api }}core/basic-structures/captured-result-item.html)