TuttleOFX  1
thinning.cpp
Go to the documentation of this file.
00001 #include <terry/globals.hpp>
00002 #include <terry/filter/thinning.hpp>
00003 
00004 #include <iostream>
00005 
00006 #include <boost/test/unit_test.hpp>
00007 using namespace boost::unit_test;
00008 
00009 BOOST_AUTO_TEST_SUITE( terry_filter_thinning_tests_suite01 )
00010 
00011 BOOST_AUTO_TEST_CASE( thinning )
00012 {
00013         // empty input/output, the test only check the compilation
00014         terry::rgb32f_view_t inView;
00015         terry::rgb32f_view_t tmpView;
00016         terry::rgb32f_view_t outView;
00017 
00018         terry::filter::applyThinning( inView, tmpView, outView );
00019 }
00020 
00021 
00022 BOOST_AUTO_TEST_SUITE_END()