|
Urbi SDK Remote for Java
2.7.3
|
The ImageFilter class is a useful class to obtain the RGB and YCrCb values of a given color. More...
Static Public Member Functions | |
| static double | getBlue (int color) |
| Returns the Blue value of the color. | |
| static double | getCb (int color) |
| Returns the Cb value of the color. | |
| static double | getCr (int color) |
| Returns the Cr value of the color. | |
| static double | getGreen (int color) |
| Returns the Green value of the color. | |
| static double | getRed (int color) |
| Returns the Red value of the color. | |
| static double | getY (int color) |
| Returns the Y value of the color. | |
The ImageFilter class is a useful class to obtain the RGB and YCrCb values of a given color.
Definition at line 21 of file ImageFilter.java.
| static double urbi.ImageFilter.getBlue | ( | int | color | ) | [static] |
Returns the Blue value of the color.
| color | The given color. |
Definition at line 51 of file ImageFilter.java.
Referenced by urbi.ImageFilter.getCb(), urbi.ImageFilter.getCr(), and urbi.ImageFilter.getY().
| static double urbi.ImageFilter.getCb | ( | int | color | ) | [static] |
Returns the Cb value of the color.
| color | The given color. |
Definition at line 84 of file ImageFilter.java.
References urbi.ImageFilter.getBlue(), urbi.ImageFilter.getGreen(), and urbi.ImageFilter.getRed().
| static double urbi.ImageFilter.getCr | ( | int | color | ) | [static] |
Returns the Cr value of the color.
| color | The given color. |
Definition at line 73 of file ImageFilter.java.
References urbi.ImageFilter.getBlue(), urbi.ImageFilter.getGreen(), and urbi.ImageFilter.getRed().
| static double urbi.ImageFilter.getGreen | ( | int | color | ) | [static] |
Returns the Green value of the color.
| color | The given color. |
Definition at line 40 of file ImageFilter.java.
Referenced by urbi.ImageFilter.getCb(), urbi.ImageFilter.getCr(), and urbi.ImageFilter.getY().
| static double urbi.ImageFilter.getRed | ( | int | color | ) | [static] |
Returns the Red value of the color.
| color | The given color. |
Definition at line 29 of file ImageFilter.java.
Referenced by urbi.ImageFilter.getCb(), urbi.ImageFilter.getCr(), and urbi.ImageFilter.getY().
| static double urbi.ImageFilter.getY | ( | int | color | ) | [static] |
Returns the Y value of the color.
| color | The given color. |
Definition at line 62 of file ImageFilter.java.
References urbi.ImageFilter.getBlue(), urbi.ImageFilter.getGreen(), and urbi.ImageFilter.getRed().