| layout | default-layout |
|---|---|
| title | class CIntermediateResultManager - Dynamsoft Core Module C++ Edition API Reference |
| description | API reference for the CIntermediateResultManager class in Dynamsoft Core C++ Edition, providing methods to observe and retrieve intermediate results during processing. |
| keywords | intermediate result manager, c++ |
| needAutoGenerateSidebar | true |
| ignore | true |
The CIntermediateResultManager class manages intermediate results generated during data capturing. It provides methods to add and remove intermediate result receivers, as well as to get original image data using an image hash id.
Namespace: dynamsoft::intermediate_results
Assembly: DynamsoftCore
class CIntermediateResultManager | Method | Description |
|---|---|
AddResultReceiver |
Adds an intermediate result receiver. |
RemoveResultReceiver |
Removes an intermediate result receiver. |
GetOriginalImage |
Gets the original image data using an image hash id. |
Adds an intermediate result receiver to the manager.
virtual int AddResultReceiver(CIntermediateResultReceiver* receiver)Parameters
[in] receiver The intermediate result receiver to add.
See Also
[CIntermediateResultReceiver]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-receiver.html)
Removes an intermediate result receiver from the manager.
virtual int RemoveResultReceiver(CIntermediateResultReceiver* receiver)Parameters
[in] receiver The intermediate result receiver to remove.
See Also
[CIntermediateResultReceiver]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-receiver.html)
Gets the original image data using an image hash id.
virtual CImageData* GetOriginalImage(const char* imageHashId)Parameters
[in] imageHashId The hash id of the image to retrieve.
Return value
Returns a pointer to the CImageData object containing the original image data. You don't need to release the memory pointed to by the returned pointer.
See Also
[CImageData]({{ site.dcvb_cpp_api }}core/basic-structures/image-data.html)