Uses of Class
org.yccheok.numrecognition.FeatureParameter

Uses of FeatureParameter in org.yccheok.numrecognition
 

Fields in org.yccheok.numrecognition declared as FeatureParameter
static FeatureParameter FeatureParameter.DEFAULT_FEATURE_PARAMETER
          The default setting of feature parameter.
private  FeatureParameter NumberImageChainCodeFeature.featureParameter
          The feature parameter.
private  FeatureParameter NumberImageLRTBHVFeature.featureParameter
          The feature parameter.
private  FeatureParameter NumberNeuralNetworkRecognizer.featureParameter
          Feature parameter for this neural network.
 

Methods in org.yccheok.numrecognition with parameters of type FeatureParameter
 NumberImageFeature NumberImageChainCodeFeatureFactory.makeFeature(NumberImageProcessor numberImageProcessor, FeatureParameter featureParameter)
          Constructs a chain code feature by taking in number image with specified feature parameter.
 NumberImageFeature NumberImageFeatureFactory.makeFeature(NumberImageProcessor numberImageProcessor, FeatureParameter featureParameter)
          Constructs a feature by taking in number image with specified feature parameter.
 NumberImageFeature NumberImageLRTBHVFeatureFactory.makeFeature(NumberImageProcessor numberImageProcessor, FeatureParameter featureParameter)
          Constructs a LRTBHV feature by taking in number image with specified feature parameter.
 NumberImageFeature NumberImageChainCodeFeatureFactory.makeFeature(java.lang.String fileName, FeatureParameter featureParameter)
          Constructs a chain code feature by taking in image from an image file with specified feature parameter.
 NumberImageFeature NumberImageFeatureFactory.makeFeature(java.lang.String fileName, FeatureParameter featureParameter)
          Constructs a feature by taking in image from an image file with specified feature parameter.
 NumberImageFeature NumberImageLRTBHVFeatureFactory.makeFeature(java.lang.String fileName, FeatureParameter featureParameter)
          Constructs a LRTBHV feature by taking in image from an image file with specified feature parameter.
 

Constructors in org.yccheok.numrecognition with parameters of type FeatureParameter
NumberImageChainCodeFeature(NumberImageProcessor numberImageProcessor, FeatureParameter featureParameter)
          Creates a new instance of NumberImageChainCodeFeature of a number image and the parameter setting for the particular feature.
NumberImageChainCodeFeature(java.lang.String fileName, FeatureParameter featureParameter)
          Creates a new instance of NumberImageChainCodeFeature of an image file and the parameter setting for the particular feature.
NumberImageLRTBHVFeature(NumberImageProcessor numberImageProcessor, FeatureParameter featureParameter)
          Creates a new instance of NumberImageLRTBHVFeature of a number image and the parameter setting for the particular feature.
NumberImageLRTBHVFeature(java.lang.String fileName, FeatureParameter featureParameter)
          Creates a new instance of NumberImageLRTBHVFeature of an image file and the parameter setting for the particular feature.
NumberNeuralNetworkRecognizer(java.lang.String neuralNetworkFileName, NumberImageFeatureFactory featureFactory, FeatureParameter featureParameter)
          Creates a new instance of NumberNeuralNetworkRecognizer with specified neural network file, feature factory and feature parameter.