/usr/include/gamera/image_view.hpp is in python-gamera-dev 3.3.3-2+deb7u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | /*
*
* Copyright (C) 2001-2005 Ichiro Fujinaga, Michael Droettboom, and Karl MacMillan
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef kwm11162001_image_view_hpp
#define kwm11162001_image_view_hpp
#include "image_view_iterators.hpp"
#include "dimensions.hpp"
#include "image.hpp"
#include "accessor.hpp"
#include "vigra_iterators.hpp"
#include "vigra/utilities.hxx"
#include <exception>
#include <stdexcept>
#include <cstring>
#include <cstdio>
#include <utility>
/*
IMAGEVIEW
----------
This is the "standard" view on a image data object. The goal
of this class is to convert a 1-dimensional data structure
(something like an array) into a 2-dimensional image that may
or may not encompass the entire data available.
DATA LAYOUT
-----------
The image data is arranged in row-major format, meaning that
the rows are concatenated together to form an array. The end
of one row is followed by the begining of the next. The distance
between the rows is called the stride. The index of any given row
can be computed by multiplying the row number with the stride. Within
each row, the each column is stored sequentially. The following diagram
demonstrates.
|stride |
-------------------------
|1|2|3|4|1|2|3|4|1|2|3|4| (the numbers refer to the column)
-------------------------
row 1 row 2 row 3
VIEWS
-----
The goal of decoupling the 2-dimensional interface from the data is
to allow a "view" on the data to be a very lightweight object. This
allows it to be passed by value with little worry about performance. This
also allows the processing of a portion of an image as if it were an entire
image. This same effect can be acheived by storing sets of Vigra style 2D
iterators, but the class interface is easily to manipulate in many situations
and it is much simpler to wrap for python.
ITERATOR CACHING
----------------
All of the operations to get and set pixels are done through iterators. To
help with performance, iterators pointing to the beginning and end of the
view dimensions are pre-calculated and stored (one const and one non-const).
This should help speed up begin() and end() in exchange for a modest increase
in the overall size of the object.
INTERFACES
----------
This class presents several interfaces in an effort to ease porting of older
code or integration with other libraries. The simplist access is through
get and set methods:
pixel_value = image.get(row, col);
image.set(row, col, value);
The disadvantage of this method is that each access requires a multiply and
add. A similar interface to the get/set method is the operator[] interface. This
presents an interface similar to a C multi-dimensional array. For example:
pixel_value = image[row][column];
image[row][column] = value;
*/
namespace Gamera {
using namespace vigra;
template<class T>
class ImageView
: public ImageBase<typename T::value_type> {
public:
using ImageBase<typename T::value_type>::ncols;
using ImageBase<typename T::value_type>::nrows;
using ImageBase<typename T::value_type>::offset_x;
using ImageBase<typename T::value_type>::offset_y;
// standard STL typedefs
typedef typename T::value_type value_type;
typedef typename T::pointer pointer;
typedef typename T::reference reference;
typedef typename T::difference_type difference_type;
// Gamera specific
typedef T data_type;
typedef ImageAccessor<value_type> accessor;
// Vigra typedefs
typedef value_type PixelType;
// convenience typedefs
typedef ImageView self;
typedef ImageBase<typename T::value_type> base_type;
//
// CONSTRUCTORS
//
ImageView() : base_type() {
m_image_data = 0;
}
// range check is optional at construction to allow for cases
// the data is not correctly sized at creation time. See
// dense_image.hpp for a situation where this occurs. KWM
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>(T& image_data, size_t offset_y, size_t offset_x, size_t
nrows, size_t ncols, bool do_range_check = true) is deprecated.
Reason: (x, y) coordinate consistency.
Use ImageView<T>(image_data, Point(offset_x, offset_y), Dim(ncols,
nrows), do_range_check) instead.
*/
ImageView(T& image_data, size_t offset_y,
size_t offset_x, size_t nrows, size_t ncols,
bool do_range_check = true) GAMERA_CPP_DEPRECATED;
#endif
ImageView(T& image_data)
: base_type(image_data.offset(), image_data.dim()) {
m_image_data = &image_data;
range_check();
calculate_iterators();
}
ImageView(T& image_data, const Rect& rect,
bool do_range_check = true)
: base_type(rect) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
ImageView(T& image_data, const Point& upper_left,
const Point& lower_right, bool do_range_check = true)
: base_type(upper_left, lower_right) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
ImageView(T& image_data, const Point& upper_left,
const Size& size, bool do_range_check = true)
: base_type(upper_left, size) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>(T& image_data, const Point& upper_left, const Dimensions&
dim, bool do_range_check = true) is deprecated.
Reason: (x, y) coordinate consistency. (Dimensions is now deprecated
in favor of Dim).
Use ImageView<T>(image_data, Point(offset_x, offset_y), Dim(ncols,
nrows), do_range_check) instead.
*/
ImageView(T& image_data, const Point& upper_left,
const Dimensions& dim, bool do_range_check = true)
GAMERA_CPP_DEPRECATED;
#endif
ImageView(T& image_data, const Point& upper_left,
const Dim& dim, bool do_range_check = true)
: base_type(upper_left, dim) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
//
// COPY CONSTRUCTORS
//
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>(const self& other, size_t offset_y, size_t offset_x, size_t
nrows, size_t ncols, bool do_range_check = true) is deprecated.
Reason: (x, y) coordinate consistency.
Use ImageView<T>(other, Point(offset_x, offset_y), Dim(ncols,
nrows), do_range_check) instead.
*/
ImageView(const self& other, size_t offset_y,
size_t offset_x, size_t nrows, size_t ncols)
GAMERA_CPP_DEPRECATED;
#endif
ImageView(const self& other, const Rect& rect)
: base_type(rect) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
ImageView(const self& other, const Point& upper_left,
const Point& lower_right)
: base_type(upper_left, lower_right) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
ImageView(const self& other, const Point& upper_left,
const Size& size)
: base_type(upper_left, size) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>(const self& other, const Point& upper_left, const Dimensions&
dim, bool do_range_check = true) is deprecated.
Reason: (x, y) coordinate consistency. (Dimensions is now deprecated
in favor of Dim).
Use ImageView<T>(other, Point(offset_x, offset_y), Dim(ncols,
nrows), do_range_check) instead.
*/
ImageView(const self& other, const Point& upper_left,
const Dimensions& dim) GAMERA_CPP_DEPRECATED;
#endif
ImageView(const self& other, const Point& upper_left,
const Dim& dim)
: base_type(upper_left, dim) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
//
// FUNCTION ACCESS
//
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>::get(size_t row, size_t col) is deprecated.
Reason: (x, y) coordinate consistency.
Use ImageView<T>::get(Point(col, row)) instead.
*/
GAMERA_CPP_DEPRECATED
value_type get(size_t row, size_t col) const {
return m_accessor(m_const_begin + (row * m_image_data->stride()) + col);
}
#endif
#ifdef GAMERA_DEPRECATED
/*
ImageView<T>::set(size_t row, size_t col, value_type value) is
deprecated.
Reason: (x, y) coordinate consistency.
Use ImageView<T>::get(Point(col, row)) instead.
*/
GAMERA_CPP_DEPRECATED
void set(size_t row, size_t col, value_type value) {
m_accessor.set(value, m_begin + (row * m_image_data->stride()) + col);
}
#endif
value_type get(const Point& p) const {
return m_accessor(m_const_begin + (p.y() * m_image_data->stride()) + p.x());
}
void set(const Point& p, value_type value) {
m_accessor.set(value, m_begin + (p.y() * m_image_data->stride()) + p.x());
}
//
// Misc
//
virtual T* data() const { return m_image_data; }
self parent() const { return self(*m_image_data, m_image_data->offset(), m_image_data->dim()); }
self& image() { return *this; }
//
// Iterators
//
typedef ImageViewDetail::RowIterator<self,
typename T::iterator> row_iterator;
row_iterator row_begin() {
return row_iterator(this, m_begin); }
row_iterator row_end() {
return row_iterator(this, m_end); }
typedef ImageViewDetail::ColIterator<self, typename T::iterator> col_iterator;
col_iterator col_begin() {
return col_iterator(this, m_begin); }
col_iterator col_end() {
return col_iterator(this, m_begin + ncols()); }
//
// Const Iterators
//
typedef ImageViewDetail::ConstRowIterator<const self,
typename T::const_iterator> const_row_iterator;
const_row_iterator row_begin() const {
return const_row_iterator(this, m_const_begin); }
const_row_iterator row_end() const {
return const_row_iterator(this, m_const_end); }
typedef ImageViewDetail::ConstColIterator<const self,
typename T::const_iterator> const_col_iterator;
const_col_iterator col_begin() const {
return const_col_iterator(this, m_const_begin); }
const_col_iterator col_end() const {
return const_col_iterator(this, m_const_begin + ncols()); }
//
// 2D iterators
//
typedef Gamera::ImageIterator<ImageView, typename T::iterator> Iterator;
Iterator upperLeft() {
return Iterator(this, m_image_data->begin(), m_image_data->stride())
+ Diff2D(offset_x() - m_image_data->page_offset_x(), offset_y() - m_image_data->page_offset_y());
}
Iterator lowerRight() {
return Iterator(this, m_image_data->begin(), m_image_data->stride())
+ Diff2D(offset_x() + ncols() - m_image_data->page_offset_x(),
offset_y() + nrows() - m_image_data->page_offset_y());
}
typedef Gamera::ConstImageIterator<const ImageView, typename T::const_iterator> ConstIterator;
ConstIterator upperLeft() const {
return ConstIterator(this, static_cast<const T*>(m_image_data)->begin(), m_image_data->stride())
+ Diff2D(offset_x() - m_image_data->page_offset_x(), offset_y() - m_image_data->page_offset_y());
}
ConstIterator lowerRight() const {
return ConstIterator(this, static_cast<const T*>(m_image_data)->begin(), m_image_data->stride())
+ Diff2D(offset_x() + ncols() - m_image_data->page_offset_x(),
offset_y() + nrows() - m_image_data->page_offset_y());
}
//
// Vector iterator
//
typedef ImageViewDetail::VecIterator<self, row_iterator, col_iterator> vec_iterator;
vec_iterator vec_begin() { return vec_iterator(row_begin()); }
vec_iterator vec_end() { return vec_iterator(row_end()); }
typedef ImageViewDetail::ConstVecIterator<self,
const_row_iterator, const_col_iterator> const_vec_iterator;
const_vec_iterator vec_begin() const {
return const_vec_iterator(row_begin());
}
const_vec_iterator vec_end() const {
return const_vec_iterator(row_end());
}
//
// OPERATOR ACCESS
//
typename T::iterator operator[](size_t n) const {
return m_begin + (n * data()->stride()); }
protected:
// redefine the dimensions change function from Rect
virtual void dimensions_change() {
range_check();
calculate_iterators();
}
void calculate_iterators() {
m_begin = m_image_data->begin()
// row offset
+ (m_image_data->stride() * (offset_y() - m_image_data->page_offset_y()))
// col offset
+ (offset_x() - m_image_data->page_offset_x());
m_end = m_image_data->begin()
// row offset
+ (m_image_data->stride() * ((offset_y() - m_image_data->page_offset_y()) + nrows()))
// column offset
+ (offset_x() - m_image_data->page_offset_x());
const T* cmd = static_cast<const T*>(m_image_data);
m_const_begin = cmd->begin()
// row offset
+ (m_image_data->stride() * (offset_y() - m_image_data->page_offset_y()))
// col offset
+ (offset_x() - m_image_data->page_offset_x());
m_const_end = cmd->begin()
// row offset
+ (m_image_data->stride() * ((offset_y() - m_image_data->page_offset_y()) + nrows()))
// column offset
+ (offset_x() - m_image_data->page_offset_x());
}
void range_check() {
if (offset_y() + nrows() - m_image_data->page_offset_y() > m_image_data->nrows() ||
offset_x() + ncols() - m_image_data->page_offset_x() > m_image_data->ncols()
|| offset_y() < m_image_data->page_offset_y()
|| offset_x() < m_image_data->page_offset_x()) {
char error[1024];
sprintf(error, "Image view dimensions out of range for data\n");
sprintf(error, "%s\tnrows %d\n", error, (int)nrows());
sprintf(error, "%s\toffset_y %d\n", error, (int)offset_y());
sprintf(error, "%s\tdata nrows %d\n", error, (int)m_image_data->nrows());
sprintf(error, "%s\tdata offset_y %d\n", error, (int)m_image_data->page_offset_y());
sprintf(error, "%s\tncols %d\n", error, (int)ncols());
sprintf(error, "%s\toffset_x %d\n", error, (int)offset_x());
sprintf(error, "%s\tdata ncols %d\n", error,(int)m_image_data->ncols());
sprintf(error, "%s\tdata offset_x %d\n", error, (int)m_image_data->page_offset_x());
throw std::range_error(error);
}
}
T* m_image_data;
typename T::iterator m_begin, m_end;
typename T::const_iterator m_const_begin, m_const_end;
accessor m_accessor;
};
#ifdef GAMERA_DEPRECATED
template<class T>
ImageView<T>::ImageView(T& image_data, size_t offset_y,
size_t offset_x, size_t nrows, size_t ncols,
bool do_range_check)
: base_type(Point(offset_x, offset_y), Dim(ncols, nrows)) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
template<class T>
ImageView<T>::ImageView(T& image_data, const Point& upper_left,
const Dimensions& dim, bool do_range_check)
: base_type(upper_left, Dim(dim.ncols(), dim.nrows())) {
m_image_data = &image_data;
if (do_range_check) {
range_check();
calculate_iterators();
}
}
template<class T>
ImageView<T>::ImageView(const self& other, size_t offset_y,
size_t offset_x, size_t nrows, size_t ncols)
: base_type(Point(offset_x, offset_y), Dim(ncols, nrows)) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
template<class T>
ImageView<T>::ImageView(const self& other, const Point& upper_left,
const Dimensions& dim)
: base_type(upper_left, Dim(dim.ncols(), dim.nrows())) {
m_image_data = other.m_image_data;
range_check();
calculate_iterators();
}
#endif
}
#endif
|