contrib/tbl/vepl/vepl_convert.h
Go to the documentation of this file.
00001 #ifndef vepl_convert_h_
00002 #define vepl_convert_h_
00003 //:
00004 // \file
00005 // \brief convert between arbitrary image types
00006 //
00007 //   This class actually copies one image to an other, pixel-wise.
00008 //
00009 // \author Peter Vanroose, K.U.Leuven (ESAT/PSI)
00010 // \date   7 October 2002
00011 //
00012 // \verbatim
00013 //  Modifications
00014 //   Peter Vanroose - 20 aug 2003 - changed parameter and return types from vil_image_view_base_sptr to vil_image_resource_sptr
00015 // \endverbatim
00016 
00017 #include <vil/vil_image_resource.h>
00018 
00019 //: convert between arbitrary image types
00020 template <class D>
00021 vil_image_resource_sptr vepl_convert(vil_image_resource_sptr, D dummy);
00022 
00023 #ifdef INSTANTIATE_TEMPLATES
00024 #include "vepl_convert.txx"
00025 #endif
00026 
00027 #endif // vepl_convert_h_