FormSuite v6.0 - Updated
OutputIdentificationInputImage Property




Accusoft.FormsAPI.Net Assembly > Accusoft.Forms Namespace > Processor Class : OutputIdentificationInputImage Property
Gets or sets a value indicating whether the input image to the IdentificationProcessor will be contained in the FormResult produced by the ProcessImage(Image) or ProcessImageParallel method.
Syntax
'Declaration
 
Public Property OutputIdentificationInputImage As Boolean
'Usage
 
Dim instance As Processor
Dim value As Boolean
 
instance.OutputIdentificationInputImage = value
 
value = instance.OutputIdentificationInputImage
public bool OutputIdentificationInputImage {get; set;}
public: __property bool get_OutputIdentificationInputImage();
public: __property void set_OutputIdentificationInputImage( 
   bool value
);
public:
property bool OutputIdentificationInputImage {
   bool get();
   void set (    bool value);
}
Remarks

Default value: false.

There are some cases where calling code may need to have access to the image that was passed to the FormFix IdentificationProcessor. Primarily, these cases involve using the IdentificationResult.AffineTransformation to map fields back to the location on the input form image. Setting this value to true will result in the input image to identification being stored in the FormResult.IdentificationInputImage property.

Typically, the input image to identification will be the image produced by a ScanFix enhancements operation. However, there are cases where no ScanFix enhancements are set to be applied to the input form image. In those cases, an enhanced image will not be generated, so the FormResult.IdentificationInputImage will be the same image as was passed into the ProcessImage(Image) method.

This property is exposed so that you can limit the memory footprint of the result objects produced by the processor object.

See Also

Reference

Processor Class
Processor Members

Is this page helpful?
Yes No
Thanks for your feedback.