HomeSort by relevance Sort by last modified time
    Searched refs:Color4 (Results 1 - 3 of 3) sorted by null

  /external/opencv3/3rdparty/openexr/Imath/
ImathColor.h 120 template <class T> class Color4
138 Color4 (); // no initialization
139 explicit Color4 (T a); // (a a a a)
140 Color4 (T a, T b, T c, T d); // (a b c d)
147 Color4 (const Color4 &v);
148 template <class S> Color4 (const Color4<S> &v);
150 const Color4 & operator = (const Color4 &v)
    [all...]
ImathColorAlgo.h 55 Color4<double> hsv2rgb_d(const Color4<double> &hsv);
60 Color4<double> rgb2hsv_d(const Color4<double> &rgb);
94 Color4<T>
95 hsv2rgb(const Color4<T> &hsv)
99 Color4<double> v = Color4<double>(hsv.r / float(limits<T>::max()),
103 Color4<double> c = hsv2rgb_d(v);
104 return Color4<T>((T) (c.r * limits<T>::max())
    [all...]
ImathColorAlgo.cpp 79 Color4<double>
80 hsv2rgb_d(const Color4<double> &hsv)
107 return Color4<double>(r,g,b,hsv.a);
145 Color4<double>
146 rgb2hsv_d(const Color4<double> &c)
174 return Color4<double>(hue,sat,val,c.a);

Completed in 368 milliseconds