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. 
 

Uses of ColorMode in org.neuroph.contrib.imgrec
 

Methods in org.neuroph.contrib.imgrec that return ColorMode
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, java.util.List<java.lang.String> imageLabels, java.util.Vector<java.lang.Integer> layersNeuronsCount, TransferFunctionType transferFunctionType, ColorMode colorMode)
          Creates and returns new neural network for image recognition.
 java.util.HashMap<java.lang.String,java.lang.Double> ImageRecognitionPlugin.recognizeImage(java.awt.image.BufferedImage img, ColorMode colorMode)
          This method performs the image recognition for the specified image in specified color mode.
 java.util.HashMap<java.lang.String,java.lang.Double> ImageRecognitionPlugin.recognizeImage(java.io.File imgFile, ColorMode colorMode)
          This method performs the image recognition for the specified image file in specified color mode.
 java.util.HashMap<java.lang.String,java.lang.Double> ImageRecognitionPlugin.recognizeImage(java.net.URL imgURL, ColorMode colorMode)
          This method performs the image recognition for the specified image URL in specified color mode.
 void ImageRecognitionPlugin.setInput(java.awt.image.BufferedImage img, ColorMode colorMode)
          Sets network input (image to recognize) from the specified BufferedImage object
 void ImageRecognitionPlugin.setInput(java.io.File imgFile, ColorMode colorMode)
          Sets network input (image to recognize) from the specified File object
 void ImageRecognitionPlugin.setInput(java.net.URL imgURL, ColorMode colorMode)
          Sets network input (image to recognize) from the specified URL object
 


Neuroph