COriginalImageResultItem
The COriginalImageResultItem class represents a captured original image result item. It is a derived class of CCapturedResultItem and provides an interface to get the image data.
Definition
Namespace: dynamsoft::basic_structures
Assembly: DynamsoftCore
Inheritance: CCapturedResultItem -> COriginalImageResultItem
class COriginalImageResultItem: public CCapturedResultItem
Methods
| Method | Description |
|---|---|
GetImageData |
Gets the image data for the COriginalImageResultItem. |
| Methods Inherited from CCapturedResultItem: | |
GetType |
Gets the type of the captured result item. |
GetReferenceItem |
Gets a pointer to the referenced item in the captured result item. |
GetTargetROIDefName |
Gets the name of the target ROI definition. |
GetTaskName |
Gets the name of the task. |
Retain |
Increases the reference count of the captured result item. |
Release |
Decreases the reference count of the captured result item. |
Clone |
Creates a copy of the captured result item. |
GetImageData
Gets the image data for the COriginalImageResultItem.
virtual const CImageData* GetImageData() const = 0;
Return value
Returns a const pointer to the CImageData object that contains the image data for the COriginalImageResultItem.
See Also