Searched refs:rgb_img (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/libs/gil/test/extension/toolbox/ |
D | hsl_hsv_test.cpp | 57 rgb8_image_t rgb_img( 640, 480 ); in BOOST_AUTO_TEST_CASE() local 58 fill_pixels( view(rgb_img), rgb8_pixel_t( 255, 128, 64 )); in BOOST_AUTO_TEST_CASE() 59 hsl32f_image_t hsl_img( view( rgb_img ).dimensions() ); in BOOST_AUTO_TEST_CASE() 61 copy_pixels( color_converted_view<hsl32f_pixel_t>( view( rgb_img )) in BOOST_AUTO_TEST_CASE() 66 rgb8_image_t rgb_img( 640, 480 ); in BOOST_AUTO_TEST_CASE() local 67 fill_pixels( view(rgb_img), rgb8_pixel_t( 255, 128, 64 )); in BOOST_AUTO_TEST_CASE() 68 hsv32f_image_t hsv_img( view( rgb_img ).dimensions() ); in BOOST_AUTO_TEST_CASE() 70 copy_pixels( color_converted_view<hsv32f_pixel_t>( view( rgb_img )) in BOOST_AUTO_TEST_CASE()
|
D | color_convert_hsl.cpp | 64 gil::rgb8_image_t rgb_img(320, 240); in test_copy_pixels_rgb_to_hsl() local 66 gil::fill_pixels(view(rgb_img), rgb_pix); in test_copy_pixels_rgb_to_hsl() 67 gil::hsl32f_image_t hsl_img(view(rgb_img).dimensions()); in test_copy_pixels_rgb_to_hsl() 68 gil::copy_pixels(gil::color_converted_view<gil::hsl32f_pixel_t>(view(rgb_img)), view(hsl_img)); in test_copy_pixels_rgb_to_hsl()
|
D | color_convert_hsv.cpp | 68 gil::rgb8_image_t rgb_img(320, 240); in test_copy_pixels_rgb_to_hsv() local 70 gil::fill_pixels(view(rgb_img), rgb_pix); in test_copy_pixels_rgb_to_hsv() 71 gil::hsv32f_image_t hsv_img(view(rgb_img).dimensions()); in test_copy_pixels_rgb_to_hsv() 72 gil::copy_pixels(gil::color_converted_view<gil::hsv32f_pixel_t>(view(rgb_img)), view(hsv_img)); in test_copy_pixels_rgb_to_hsv()
|
/third_party/boost/libs/gil/test/legacy/ |
D | image.cpp | 173 rgb8_image_t rgb_img(img_view.dimensions()); in check_view() local 174 copy_and_convert_pixels(img_view,view(rgb_img)); in check_view() 175 check_view_impl(const_view(rgb_img), name); in check_view()
|