/third_party/boost/libs/gil/test/core/image_view/ |
D | xy_locator.cpp | 26 BOOST_TEST_EQ(*view.xy_at(0, 0), fixture::gray8_draw_pixel); in test_xy_at() 27 BOOST_TEST_EQ(*view.xy_at(1, 0), fixture::gray8_back_pixel); in test_xy_at() 28 BOOST_TEST_EQ(*view.xy_at(0, 1), fixture::gray8_back_pixel); in test_xy_at() 29 BOOST_TEST_EQ(*view.xy_at(1, 1), fixture::gray8_draw_pixel); in test_xy_at() 34 BOOST_TEST_EQ(*view.xy_at(0, 0), fixture::rgb8_draw_pixel); in test_xy_at() 35 BOOST_TEST_EQ(*view.xy_at(1, 0), fixture::rgb8_back_pixel); in test_xy_at() 36 BOOST_TEST_EQ(*view.xy_at(0, 1), fixture::rgb8_back_pixel); in test_xy_at() 37 BOOST_TEST_EQ(*view.xy_at(1, 1), fixture::rgb8_draw_pixel); in test_xy_at() 46 BOOST_TEST(view.xy_at(0, 0).x() == view.row_begin(0)); in test_xy_x_begin() 47 BOOST_TEST(view.xy_at(0, 1).x() == view.row_begin(1)); in test_xy_x_begin() [all …]
|
/third_party/boost/libs/gil/test/extension/toolbox/ |
D | indexed_image.cpp | 32 gil::rgb8_pixel_t const p = *gil::view(img).xy_at(10, 10); in test_index_image() 48 index = *img.get_indices_view().xy_at(0, 0); // verify values along first row in test_index_image() 50 index = *img.get_indices_view().xy_at(128, 0); in test_index_image() 53 index = *img.get_indices_view().xy_at(255, 0); in test_index_image() 57 gil::rgb8_pixel_t const pixel1 = *img.get_palette_view().xy_at(index, 0); in test_index_image() 62 gil::rgb8_pixel_t const pixel2 = *gil::view(img).xy_at(10, 1); in test_index_image() 78 std::uint8_t index = *img.get_indices_view().xy_at(128, 0); in test_index_image() 81 gil::rgb8_pixel_t const pixel1 = *img.get_palette_view().xy_at(index, 0); in test_index_image() 85 gil::rgb8_pixel_t const pixel2 = *view(img).xy_at(10, 1); in test_index_image()
|
D | indexed_image_test.cpp | 33 bg::rgb8_pixel_t const p = *bg::view(img).xy_at(10, 10); in BOOST_AUTO_TEST_CASE() 50 index = *img.get_indices_view().xy_at(0, 0); // verify values along first row in BOOST_AUTO_TEST_CASE() 52 index = *img.get_indices_view().xy_at(128, 0); in BOOST_AUTO_TEST_CASE() 55 index = *img.get_indices_view().xy_at(255, 0); in BOOST_AUTO_TEST_CASE() 59 bg::rgb8_pixel_t const pixel1 = *img.get_palette_view().xy_at(index, 0); in BOOST_AUTO_TEST_CASE() 64 bg::rgb8_pixel_t const pixel2 = *bg::view(img).xy_at(10, 1); in BOOST_AUTO_TEST_CASE() 80 std::uint8_t index = *img.get_indices_view().xy_at(128, 0); in BOOST_AUTO_TEST_CASE() 83 bg::rgb8_pixel_t const pixel1 = *img.get_palette_view().xy_at(index, 0); in BOOST_AUTO_TEST_CASE() 87 bg::rgb8_pixel_t const pixel2 = *view(img).xy_at(10, 1); in BOOST_AUTO_TEST_CASE()
|
D | subchroma_image.cpp | 95 auto p = *v.xy_at(0, 0); in test_subchroma_image()
|
/third_party/boost/boost/gil/extension/toolbox/image_types/ |
D | indexed_image.hpp | 105 return * this->_palette_loc.xy_at( at_c<0>( *this->_indices_loc.xy_at( p )), 0 ); in operator ()() 134 return *this->_palette_loc.xy_at(*this->_indices_loc.xy_at(p), 0); in operator ()() 233 … typename view_t::locator(point_t(0, 0), point_t(1, 1), defer_fn_t(iv.xy_at(0, 0), pv.xy_at(0, 0))) in view() 336 defer_fn_t deref_fn( view( _indices ).xy_at( 0, 0 ) in init() 337 , view( _palette ).xy_at( 0, 0 ) in init()
|
D | subchroma_image.hpp | 108 plane_locator_t y = _y_locator.xy_at( p ); in operator ()() 109 …plane_locator_t v = _v_locator.xy_at( p.x / scaling_factors_t::ss_X, p.y / scaling_factors_t::ss_X… in operator ()() 110 …plane_locator_t u = _u_locator.xy_at( p.x / scaling_factors_t::ss_X, p.y / scaling_factors_t::ss_X… in operator ()() 403 defer_fn_t deref_fn( view( _y_plane ).xy_at( 0, 0 ) in init() 404 , view( _v_plane ).xy_at( 0, 0 ) in init() 405 , view( _u_plane ).xy_at( 0, 0 ) in init() 554 defer_fn_t deref_fn( y_plane.xy_at( 0, 0 ) in subchroma_view() 555 , v_plane.xy_at( 0, 0 ) in subchroma_view() 556 , u_plane.xy_at( 0, 0 ) in subchroma_view()
|
/third_party/boost/boost/gil/ |
D | image_view_factory.hpp | 190 return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1)); in flipped_up_down_view() 201 return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(src.width()-1,0),-1,1)); in flipped_left_right_view() 212 return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(0,0),1,1,true)); in transposed_view() 223 …return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1,1,… in rotated90cw_view() 234 …return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(src.width()-1,0),1,-1,t… in rotated90ccw_view() 245 …return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(src.width()-1,src.height()-1),-… in rotated180_view() 259 return View(dimensions, src.xy_at(topleft)); in subimage_view() 270 return View(width, height, src.xy_at(x_min, y_min)); in subimage_view() 288 typename view_t::xy_locator(src.xy_at(0,0), x_step, y_step)); in subsampled_view()
|
D | locator.hpp | 138 …Loc xy_at(x_coord_t dx, y_coord_t dy) const { Loc tmp=concrete(); tmp+=point_t(dx,dy… in xy_at() function in boost::gil::pixel_2d_locator_base 139 …Loc xy_at(const difference_type& d) const { Loc tmp=concrete(); tmp+=d; … in xy_at() function in boost::gil::pixel_2d_locator_base 153 Loc operator+(const difference_type& d) const { return xy_at(d); } in operator +() 154 Loc operator-(const difference_type& d) const { return xy_at(-d); } in operator -() 276 …this_t xy_at (x_coord_t dx, y_coord_t dy) const { return this_t(x_at( dx , dy ), row_size… in xy_at() function in boost::gil::memory_based_2d_locator 277 …this_t xy_at (const difference_type& d) const { return this_t(x_at( d.x, d.y), row_size… in xy_at() function in boost::gil::memory_based_2d_locator
|
D | image_view.hpp | 294 auto xy_at(x_coord_t x, y_coord_t y) const -> xy_locator in xy_at() function in boost::gil::image_view 302 auto xy_at(point_t const& p) const -> xy_locator in xy_at() function in boost::gil::image_view 346 return xy_at(x, y).y(); in y_at() 353 return xy_at(p).y(); in y_at()
|
D | algorithm.hpp | 843 typename View::xy_locator loc = view.xy_at(0, 0); in for_each_pixel_position() 1103 typename View1::xy_locator loc=src.xy_at(0,0); in transform_pixel_positions() 1119 typename View1::xy_locator loc1=src1.xy_at(0,0); in transform_pixel_positions() 1120 typename View2::xy_locator loc2=src2.xy_at(0,0); in transform_pixel_positions()
|
/third_party/boost/boost/gil/concepts/ |
D | pixel_locator.hpp | 260 loc = loc.xy_at(d); in constraints() 261 loc = loc.xy_at(xd, yd); in constraints()
|
D | image_view.hpp | 248 xy_locator lc = view.xy_at(xd, yd); in constraints() 249 lc = view.xy_at(d); in constraints()
|
/third_party/boost/libs/gil/doc/design/ |
D | pixel_locator.rst | 98 Loc Loc::xy_at(const difference_type&) const; 103 Loc Loc::xy_at(x_coord_t, y_coord_t) const; 244 loc=img.xy_at(10,10); // start at pixel (x=10,y=10)
|
D | image_view.rst | 101 xy_locator View::xy_at(const point_t&) const; 107 xy_locator View::xy_at(x_coord_t,y_coord_t) const; 298 return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1));
|
/third_party/boost/libs/gil/doc/html/_sources/design/ |
D | pixel_locator.rst.txt | 98 Loc Loc::xy_at(const difference_type&) const; 103 Loc Loc::xy_at(x_coord_t, y_coord_t) const; 244 loc=img.xy_at(10,10); // start at pixel (x=10,y=10)
|
D | image_view.rst.txt | 101 xy_locator View::xy_at(const point_t&) const; 107 xy_locator View::xy_at(x_coord_t,y_coord_t) const; 298 return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1));
|
/third_party/boost/libs/gil/test/legacy/ |
D | image.cpp | 225 typename View::xy_locator loc=img_view.xy_at(0,img_view.height()-1); in basic_test() 233 loc=img_view.xy_at(img_view.width()-1,img_view.height()-1); in basic_test()
|
/third_party/boost/boost/gil/extension/numeric/ |
D | sampler.hpp | 108 typename SrcView::xy_locator loc=src.xy_at(p0.x,p0.y); in sample()
|
/third_party/boost/libs/gil/doc/html/ |
D | searchindex.js | 1 …:24,xxx_all:24,xxx_and_convert_xxx:24,xxx_read:24,xxx_tag:24,xxx_write:24,xy_at:[10,15,28],xy_loc:…
|
/third_party/boost/libs/gil/doc/html/_sources/tutorial/ |
D | gradient.rst.txt | 206 gray8c_view_t::xy_locator src_loc = src.xy_at(0,1); 246 gray8c_view_t::xy_locator src_loc = src.xy_at(0,1);
|
/third_party/boost/libs/gil/doc/tutorial/ |
D | gradient.rst | 206 gray8c_view_t::xy_locator src_loc = src.xy_at(0,1); 246 gray8c_view_t::xy_locator src_loc = src.xy_at(0,1);
|