The CogOCRMaxClassifierRunParams type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| AcceptThreshold |
The accept threshold.
| |
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.) | |
| ConfidenceThreshold |
The confidence threshold.
| |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| KeepProcessedImage |
Whether to keep around the processed image corresponding to the run-time
input rectified image. This processed image is usually provided for
diagnostic purposes and is usually disabled for production runs.
| |
| ReportSkippedTrainCharacterIndices |
Whether to include in the result object the set of train character
indices which were skipped because they did not satisfy the scale
constraints.
| |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.) | |
| UseXScaleFilter |
Whether to use the x-scale filter.
| |
| UseYScaleFilter |
Whether to use the y-scale filter.
| |
| XScaleFilterHigh |
The high value for x-scale filter range for skipping candidate
classes/instances whose rectified training image's y-size (i.e. width)
is beyond the range specified here.
| |
| XScaleFilterLow |
The low value for x-scale filter range for skipping candidate
classes/instances whose rectified training image's x-size (i.e. width)
is beyond the range specified here.
| |
| YScaleFilterHigh |
The high value for y-scale filter range for skipping candidate
classes/instances whose rectified training image's y-size (i.e. height)
is beyond the range specified here.
| |
| YScaleFilterLow |
The low value for y-scale filter range for skipping candidate
classes/instances whose rectified training image's y-size (i.e. height)
is beyond the range specified here.
|
See Also