FeatureExtractor.Utils
Class HSVImage

java.lang.Object
  extended by FeatureExtractor.Utils.HSVImage

public class HSVImage
extends java.lang.Object

Class containing the HSV matrix of a given image.


Constructor Summary
HSVImage(double[][] h, double[][] s, double[][] v)
          Creates a new HSV image.
 
Method Summary
 double[][] getH()
          Returns the H(ue) matrix.
 double[][] getS()
          Returns the S(aturation) matrix.
 double[][] getV()
          Returns the V(alue) (intensity) matrix.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HSVImage

public HSVImage(double[][] h,
                double[][] s,
                double[][] v)
Creates a new HSV image.

Parameters:
h - H(ue) values.
s - S(aturation) values.
v - V(alue) (intensity) values.
Method Detail

getH

public double[][] getH()
Returns the H(ue) matrix.

Returns:
The H(ue) matrix.

getS

public double[][] getS()
Returns the S(aturation) matrix.

Returns:
The S(aturation) matrix.

getV

public double[][] getV()
Returns the V(alue) (intensity) matrix.

Returns:
The V(alue) (intensity) matrix.