Home
last modified time | relevance | path

Searched refs:green_t (Results 1 – 25 of 31) sorted by relevance

12

/third_party/boost/libs/gil/test/core/algorithm/
Dstd_uninitialized_fill.cpp141 … BOOST_TEST_EQ((int)get_color(p, gil::green_t()), (int)get_color(fill_pixel, gil::green_t())); in test_fill_with_packed_pixel_bgr121()
162 … BOOST_TEST_EQ((int)get_color(p, gil::green_t()), (int)get_color(fill_pixel, gil::green_t())); in test_fill_with_packed_pixel_rgb535()
183 … BOOST_TEST_EQ((int)get_color(p, gil::green_t()), (int)get_color(fill_pixel, gil::green_t())); in test_bit_aligned_pixel_bgr232()
204 … BOOST_TEST_EQ((int)get_color(p, gil::green_t()), (int)get_color(fill_pixel, gil::green_t())); in test_bit_aligned_pixel_rgb567()
/third_party/boost/libs/gil/test/extension/numeric/
Dpixel_numeric_operations_float.cpp33 BOOST_TEST_EQ(get_color(c, gil::green_t()), 40); in test_plus()
40 BOOST_TEST_EQ(get_color(d, gil::green_t()), 40); in test_plus()
56 BOOST_GIL_TEST_IS_CLOSE(get_color(c, gil::green_t()), 4.f, epsilon); in test_multiply()
71 BOOST_TEST_EQ(get_color(c, gil::green_t()), 10); in test_divide()
85 BOOST_GIL_TEST_IS_CLOSE(get_color(c, gil::green_t()), 1.f, epsilon); in test_divide()
Dnumeric.cpp70 BOOST_ASSERT( get_color( c, green_t() ) == 40 ); in BOOST_AUTO_TEST_CASE()
80 BOOST_ASSERT( get_color( d, green_t() ) == 40 ); in BOOST_AUTO_TEST_CASE()
97 BOOST_CHECK_CLOSE( static_cast<float>( get_color( c, green_t() )), 4.f, epsilon ); in BOOST_AUTO_TEST_CASE()
115 BOOST_ASSERT( get_color( c, green_t() ) == 10 ); in BOOST_AUTO_TEST_CASE()
132 BOOST_CHECK_CLOSE( static_cast< float >( get_color( c, green_t() )), 1.f, epsilon ); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/gil/
Dcolor_convert.hpp99 get_color(dst,green_t())= in operator ()()
100 … channel_convert<typename color_element_type<P2, green_t>::type>(get_color(src,gray_color_t())); in operator ()()
133 get_color(src,red_t()), get_color(src,green_t()), get_color(src,blue_t()) in operator ()()
163 src_t const g = get_color(src, green_t()); in operator ()()
210 get_color(dst,green_t())= in operator ()()
211 channel_convert<typename color_element_type<P2,green_t>::type>( in operator ()()
281 get_color(dst,green_t())=get_color(tmp,green_t()); in operator ()()
300 … channel_multiply(get_color(src,green_t()),get_color(src,alpha_t())), in operator ()()
Drgb.hpp27 struct green_t {}; struct
34 using rgb_t = mp11::mp_list<red_t, green_t, blue_t>;
Drgba.hpp25 using rgba_t =mp11::mp_list<red_t, green_t, blue_t, alpha_t>;
/third_party/boost/boost/gil/extension/toolbox/color_spaces/
Dgray_alpha.hpp48 get_color(dst,green_t())= in operator ()()
49 … channel_convert<typename color_element_type<P2, green_t>::type>(get_color(src,gray_color_t())); in operator ()()
66 get_color(dst,green_t()) = in operator ()()
67 channel_convert<typename color_element_type<P2, green_t>::type>( in operator ()()
Dxyz.hpp75 channel_convert<float32_t>(get_color(src, green_t())))); in operator ()()
132 get_color(dst,green_t()) = in operator ()()
133 channel_convert<typename color_element_type<P2, green_t>::type>( in operator ()()
Dycbcr.hpp142 get_color( dst, green_t() ) = (dst_channel_t) green; in convert()
166 get_color(dst, green_t()) = static_cast<dst_channel_t>( in convert()
194 src_channel_t green = channel_convert<src_channel_t>( get_color(src, green_t())); in operator ()()
222 src_channel_t green = channel_convert<src_channel_t>( get_color(src, green_t())); in operator ()()
258 get_color( dst, green_t() ) = (dst_channel_t) green; in operator ()()
Dhsv.hpp60 float32_t temp_green = channel_convert<float32_t>( get_color( src, green_t() )); in operator ()()
223 get_color(dst,green_t())= in operator ()()
224 channel_convert<typename color_element_type< P2, green_t >::type>( green ); in operator ()()
Dhsl.hpp56 float32_t temp_green = channel_convert<float32_t>( get_color( src, green_t() )); in operator ()()
251 get_color(dst,green_t())= in operator ()()
252 channel_convert<typename color_element_type< P2, green_t >::type>( green ); in operator ()()
/third_party/boost/boost/gil/extension/toolbox/color_converters/
Dgray_to_rgba.hpp24 get_color(dst,green_t())= in operator ()()
25 … channel_convert<typename color_element_type<P2, green_t>::type>(get_color(src,gray_color_t())); in operator ()()
/third_party/boost/libs/gil/doc/html/_sources/design/
Dcolor_space.rst.txt53 struct green_t {};
56 rgba_t = using mpl::vector4<red_t, green_t, blue_t, alpha_t>;
Dpixel.rst.txt274 get_color(r565,green_t()) = channel_convert<rgb565_channel1_t>(get_color(rgb_full,green_t()));
/third_party/boost/libs/gil/doc/design/
Dcolor_space.rst53 struct green_t {};
56 rgba_t = using mpl::vector4<red_t, green_t, blue_t, alpha_t>;
Dpixel.rst274 get_color(r565,green_t()) = channel_convert<rgb565_channel1_t>(get_color(rgb_full,green_t()));
Dexamples.rst21 get_color(p1,green_t()) = get_color(p2,blue_t()); // channels can also be accessed by name
/third_party/boost/libs/gil/test/extension/toolbox/
Dindexed_image_test.cpp142 BOOST_ASSERT(bg::get_color(p, bg::green_t()) == 80); in BOOST_AUTO_TEST_CASE()
146 BOOST_ASSERT(bg::get_color(q, bg::green_t()) == 80); in BOOST_AUTO_TEST_CASE()
Dindexed_image.cpp140 BOOST_TEST_EQ(gil::get_color(p, gil::green_t()), 80); in test_index_image_view()
144 BOOST_TEST_EQ(gil::get_color(q, gil::green_t()), 80); in test_index_image_view()
/third_party/boost/boost/gil/extension/io/bmp/detail/
Dscanline_read.hpp289 get_color( this->_palette[i], green_t() ) = this->_io_dev.read_uint8(); in read_palette()
389 get_color( dst_it[i], green_t() ) = static_cast< byte_t >( g ); in read_15_bits_row()
Dreader_backend.hpp189 get_color( _palette[i], green_t() ) = _io_dev.read_uint8(); in read_palette()
Dread.hpp378 get_color( it[i], green_t() ) = static_cast< byte_t >( g ); in read_data_15()
/third_party/boost/boost/gil/extension/io/tiff/detail/
Dreader_backend.hpp149 tiff_color_map::green_t _green;
/third_party/boost/libs/gil/test/legacy/
Dpixel.cpp238 …get_color(r565,green_t()) = channel_convert<kth_element_type<rgb565_pixel_t, 1>::type>(get_color(r… in test_packed_pixel()
/third_party/boost/boost/gil/extension/io/tiff/
Dtags.hpp150 using green_t = uint16_t *; typedef

12