Classifier Class

CVB.Net Documentation
Minos classifier object.
Inheritance Hierarchy

SystemObject
  Stemmer.Cvb.MinosClassifier

Namespace:  Stemmer.Cvb.Minos
Assembly:  Stemmer.Cvb.Minos (in Stemmer.Cvb.Minos.dll) Version: 14.0.0.0
Syntax

public class Classifier : INativeHandle, IDisposable

The Classifier type exposes the following members.

Constructors

  NameDescription
Public methodClassifier(Byte)
Recreate a serialized Minos classifier from a byte array.
Public methodClassifier(String)
Load a saved classifier from a file.
Public methodClassifier(Byte, Int32, Int32)
Recreate a serialized Minos classifier from a byte array.
Top
Properties

  NameDescription
Public propertyComment
Comment assigned to the classifier at generation time
Public propertyContrastTrigger
Trigger value for the contrast of features to be taken into account.
Public propertyCreationDate
Creation date of the classifier.
Public propertyExtent
Extent of the classes in the classifier relative to the anchor point.
Public propertyFileName
Name of the file from which this classifier was loaded (string.Empty if this image list was neither loaded nor saved since its construction).
Public propertyHandle
Native Minos classifier handle.
Public propertyIsDisposed
Tests if the native handle has already been disposed.
Public propertyIsMinos16BitClassifier
returns true if the classifier was generated by Minos16Bit
Public propertyLearnParameters
Gets the set of parameters that has been used during classifier generation.
Public propertyModels
Collection of the models contained in this classifier.
Public propertyQualityMeasure
Selects the type of quality feedback from the classifier.
Public propertyThreshold
Threshold for search operations witz normalized quality feedback.
Public propertyTrainingSetName
Name of the training set from which this classifier was generated.
Top
Methods

  NameDescription
Public methodDispose
IDisposable implementation.
Protected methodDispose(Boolean)
IDispose helper function.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Finalizer.
(Overrides ObjectFinalize.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRead(ImagePlane, Area2D, Double, Area2D)
Reads a list of characters, using the following approach:
  1. To begin with, the first object in the startAOI will be searched.
  2. This result's advance vector will be added to this result's position; around the result position, the ocrAOI will be centered.
  3. The result area will be used as the AOI for a new FindFirst search operation.
The whole process will be repeated until no more results are encountered. String of up to 32k characters are read.
Public methodRead(ImagePlane, ReadMode, Area2D, Double, Area2D, SearchResult)
Reads a string of characters, using the following approach:
  1. To begin with, the first object in the startAOI will be searched.
  2. This result's advance vector will be added to this result's position; around the result position, the ocrAOI will be centered.
  3. The result area will be used as the AOI for a new FindFirst search operation.
The whole process will be repeated until no more results are encountered. String of up to 32k characters are read.
Public methodSave
Write the classifier to a file.
Public methodSearch(ImagePlane, SearchMode)
Search one object using this Minos classifier.
Public methodSearch(ImagePlane, SearchMode, Double)
Search one object using this Minos classifier.
Public methodSearch(ImagePlane, SearchMode, Area2D, Double)
Search one object using this Minos classifier.
Public methodSearchAll(ImagePlane, Int32)
Overloaded SearchAll function (re-routes with default arguments for area and density)
Public methodSearchAll(ImagePlane, Double, Int32)
Overloaded SearchAll function (re-routes with default arguments for area)
Public methodSearchAll(ImagePlane, Area2D, Double, Int32)
Search all objects using this Minos classifier
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTransform
Generate a new classifier by transforming this classifier with a 2x2 transformation matrix.
Top
Events

  NameDescription
Public eventObjectDisposing
Raised when this object is about to be disposed via the Dispose method.
Top
See Also

Reference