Go to the documentation of this file.00001 #ifndef vil3d_threshold_h_
00002 #define vil3d_threshold_h_
00003
00004
00005
00006
00007
00008 #include <vil3d/vil3d_image_view.h>
00009
00010
00011 template<class srcT>
00012 void vil3d_threshold_above(const vil3d_image_view<srcT>& src,
00013 vil3d_image_view<bool>& dest, srcT t);
00014
00015
00016 template<class srcT>
00017 void vil3d_threshold_below(const vil3d_image_view<srcT>& src,
00018 vil3d_image_view<bool>& dest, srcT t);
00019
00020
00021 template<class srcT>
00022 void vil3d_threshold_inside(const vil3d_image_view<srcT>& src,
00023 vil3d_image_view<bool>& dest, srcT t0, srcT t1);
00024
00025
00026 template<class srcT>
00027 void vil3d_threshold_outside(const vil3d_image_view<srcT>& src,
00028 vil3d_image_view<bool>& dest, srcT t0, srcT t1);
00029
00030 #endif // vil3d_threshold_h_