FormFix v6.0 for .NET - Updated
DropOutMethod Property



Accusoft.FormFixSdk Namespace > DropOutProcessor Class : DropOutMethod Property
The method this object will use to drop out the form.
Syntax
'Declaration
 
Public Property DropOutMethod As DropOutMethod
'Usage
 
Dim instance As DropOutProcessor
Dim value As DropOutMethod
 
instance.DropOutMethod = value
 
value = instance.DropOutMethod
public DropOutMethod DropOutMethod {get; set;}
public:
property DropOutMethod DropOutMethod {
   DropOutMethod get();
   void set (    DropOutMethod value);
}
Remarks

This property tells the object how to drop out the form. You must set this value before you call the CreateImageOfField method.

There are three methods for creating field images: DropOut, Clip, and ClipWithoutRescaling.

Normally, you should use the DropOut method, which will compare the filled and model images, then create an output image that contains the content that was added to the form. Ideally, the output image will not contain any part of the form model; however it is sometimes impossible to determine what is part of the form and what was added by a user.

However, when you are processing OMR fields, you should use the ClipWithoutRescaling method. The OmrProcessor object requires its input images to contain both the marks and the original bubbles. It is okay to use the Clip method for OMR but the ClipWithoutRescaling method will generally perform better.

There are also a few non-OMR situations where you should use the Clip method:

If your images do not drop well, you should try using the line removal and comb removal feature in ScanFix. Make sure you set this property to Clip before you use line or comb removal.

Note: when you set this property to Clip or ClipWithoutRescaling, the resulting confidence of the operation will always be 100.

Default value: Clip

See Also

Reference

DropOutProcessor Class
DropOutProcessor Members

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