TuttleOFX  1
canny.cpp
Go to the documentation of this file.
00001 #include <terry/globals.hpp>
00002 #include <terry/filter/canny.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_canny_tests_suite01 )
00010 
00011 BOOST_AUTO_TEST_CASE( canny )
00012 {
00013         // empty input/output, the test only check the compilation
00014         terry::rgb32f_view_t inView;
00015         terry::rgb32f_view_t cannyView;
00016 
00017 /*
00018         terry::filter::canny( inView,
00019                 sobelViewX, sobelViewY, cannyView,
00020                 point2<double>(5, 5),
00021                 terry::filter::canny::convolve_boundary_,
00022                 );
00023 */
00024 }
00025 
00026 
00027 BOOST_AUTO_TEST_SUITE_END()