Deprecated List

Class oln::convert::f_nrgb_to_xyz< inbits, outbits >
A composition should be performed with nrgb->rgb and rgb->xyz. It has not been replaced within the function because a double conversion 'reduces' the color space. See the following example:
// Obsolete: // // #include <oln/convert/nrgbxyz.hh> // #include <ntg/all.hh> // int main(int argc, char **argv) // { // ntg::nrgb_8 in(100, 60, 64); // ntg::xyz_8 out = oln::convert::f_nrgb_to_xyz<8, 8>()(in); // } // // Should be replaced by: // #include <oln/convert/rgbxyz.hh> #include <oln/convert/rgbnrgb.hh> #include <ntg/all.hh> int main() { ntg::nrgb_8 in(100, 60, 64); ntg::xyz_8 out = oln::convert::f_rgb_to_xyz<8, 8>() (oln::convert::f_nrgb_to_rgb<8, 8>()(in)); }

Class oln::convert::f_xyz_to_nrgb< inbits, outbits >
A composition should be performed with xyz->rgb and rgb->nrgb.

Member oln::convert::nrgb_to_xyz (const color< 3, inbits, nrgb_traits > &v)
A composition should be performed with nrgb->rgb and rgb->xyz.

Member oln::convert::xyz_to_nrgb (const color< 3, inbits, xyz_traits > &v)
a composition should be performed with xyz->rgb and rgb->nrgb.

Generated on Thu Apr 15 20:13:45 2004 for Olena by doxygen 1.3.6-20040222