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.

Member oln::convol::slow::convolve (const abstract::image< I > &input, const abstract::w_window< Win > &win)
This function is obsolete, prefer : convolve(const abstract::non_vectorial_image< I >& input, const abstract::image< J >& k)

Generated on Tue Feb 20 20:21:28 2007 for Olena by  doxygen 1.5.1