FormFix v6.0 for .NET - Updated
MaximumIdentificationBestMatches Property



Accusoft.FormFixSdk Namespace > IdentificationProcessor Class : MaximumIdentificationBestMatches Property
The maximum number of matches to return in the IdentificationResult.BestMatches collection.
Syntax
'Declaration
 
Public Property MaximumIdentificationBestMatches As Integer
'Usage
 
Dim instance As IdentificationProcessor
Dim value As Integer
 
instance.MaximumIdentificationBestMatches = value
 
value = instance.MaximumIdentificationBestMatches
public int MaximumIdentificationBestMatches {get; set;}
public:
property int MaximumIdentificationBestMatches {
   int get();
   void set (    int value);
}
Remarks

This property controls the maximum number of matches that this object will place into the IdentificationResult.BestMatches collection. Normally, you should leave this value set to 0. If you want to refine the identification process after it completes, you can set this to a value larger than 0 (values of 3-10 are the most useful) and then use an independent identification algorithm to determine which of the best matches is the true match.

There are many approaches you can take to refine the identification process. You may be able to perform OCR on a page number, read a bar code, or use some other application-specific technique.

Note: If IncludeBestMatchesBelowConfidence is set to false, the BestMatches collection will not contain any matches with a confidence below MinimumIdentificationConfidence, regardless of the value of this property.

Valid range: 0 to 100

Default value: 0

See Also

Reference

IdentificationProcessor Class
IdentificationProcessor Members
IdentificationResult.BestMatches
IdentificationProcessor.IncludeBestMatchesBelowConfidence

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