Neuroph

Uses of Class
org.neuroph.contrib.imgrec.ColorMode

Packages that use ColorMode
org.neuroph.contrib.imgrec Provides classes for image recognition with neural networks. 
org.neuroph.contrib.ocr Provides classes for ocr with neural networks. 
 

Uses of ColorMode in org.neuroph.contrib.imgrec
 

Methods in org.neuroph.contrib.imgrec that return ColorMode
 ColorMode ImageRecognitionPlugin.getColorMode()
          Returns color mode used for image recognition
static ColorMode ColorMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ColorMode[] ColorMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.neuroph.contrib.imgrec with parameters of type ColorMode
static NeuralNetwork ImageRecognitionHelper.createNewNeuralNetwork(java.lang.String label, java.awt.Dimension samplingResolution, ColorMode colorMode, java.util.List<java.lang.String> imageLabels, java.util.Vector<java.lang.Integer> layersNeuronsCount, TransferFunctionType transferFunctionType)
          Creates and returns new neural network for image recognition.
 

Constructors in org.neuroph.contrib.imgrec with parameters of type ColorMode
ImageRecognitionPlugin(java.awt.Dimension samplingResolution, ColorMode colorMode)
          Constructor
 

Uses of ColorMode in org.neuroph.contrib.ocr
 

Methods in org.neuroph.contrib.ocr that return ColorMode
 ColorMode OcrPlugin.getColorMode()
          Returns color mode used for OCR
 

Methods in org.neuroph.contrib.ocr with parameters of type ColorMode
static NeuralNetwork OcrHelper.createNewNeuralNetwork(java.lang.String label, java.awt.Dimension samplingResolution, ColorMode colorMode, java.util.List<java.lang.String> characterLabels, java.util.Vector<java.lang.Integer> layersNeuronsCount, TransferFunctionType transferFunctionType)
          Creates neural network for OCR, which contains OCR plugin.
 

Constructors in org.neuroph.contrib.ocr with parameters of type ColorMode
OcrPlugin(java.awt.Dimension samplingResolution, ColorMode colorMode)
          Constructor, creates new OCR Plugin for specified sampling resolution and color mode
 


Neuroph