TuttleOFX  1
localMaxima.cpp
Go to the documentation of this file.
00001 #include <terry/globals.hpp>
00002 #include <terry/filter/localMaxima.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_localMaxima )
00010 
00011 BOOST_AUTO_TEST_CASE( localMaxima )
00012 {
00013         // empty input/output, the test only check the compilation
00014         terry::rgb32f_view_t inView;
00015         terry::rgb32f_view_t outView;
00016 
00017         terry::filter::applyLocalMaxima( inView, outView );
00018 }
00019 
00020 
00021 BOOST_AUTO_TEST_SUITE_END()