SLIP
1.4
|
Provides a class to manipulate multicomponent 2d containers. More...
#include <iostream>
#include <iterator>
#include <cassert>
#include <numeric>
#include <cmath>
#include <string>
#include <vector>
#include <cstddef>
#include "Matrix.hpp"
#include "stride_iterator.hpp"
#include "kstride_iterator.hpp"
#include "iterator2d_box.hpp"
#include "iterator2d_range.hpp"
#include "component_iterator2d_box.hpp"
#include "component_iterator2d_range.hpp"
#include "apply.hpp"
#include "Range.hpp"
#include "Box2d.hpp"
#include "Point2d.hpp"
#include "DPoint2d.hpp"
#include "compare.hpp"
#include <boost/serialization/access.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/version.hpp>
Go to the source code of this file.
Classes | |
class | slip::stride_iterator< T > |
class | slip::iterator2d_box< T > |
This is some iterator to iterate a 2d container into a slip::Box2d area defined by the indices of the 2d container. More... | |
class | slip::const_iterator2d_box< T > |
This is some iterator to iterate a 2d container into a Box area defined by the indices of the 2d container. More... | |
class | slip::const_iterator2d_range< T > |
This is some iterator to iterate a 2d container into two Range defined by the indices and strides of the 2d container. More... | |
class | slip::DPoint2d< T > |
Difference of Point2D class, specialization of DPoint<CoordType,DIM> with DIM = 2. More... | |
class | slip::Point2d< T > |
This is a point2d class, a specialized version of Point<CoordType,DIM> with DIM = 2. More... | |
class | slip::Box2d< CoordType > |
This is a Box2d class, a specialized version of slip::Box<CoordType,DIM> with DIM = 2. More... | |
class | slip::GenericMultiComponent2d< Block > |
This is a GenericMultiComponent2d class. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 2d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the double bracket element access. Data are stored using a Matrix of Block. It is essentially an internal class used to define slip::ColorImage, slip::MultispectralImage, slip::DenseVector2dField2d, slip::DenseVector3dField2d. But it can be used to define other 2d Multicomponent structures. More... | |
class | slip::Matrix< Block > |
Numerical matrix class. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 2d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the double bracket element access. It extends the interface of Array2d adding arithmetical: +=, -=, *=, /=,+,-,/,*... and mathematical operators: min, max, abs, sqrt, cos, acos, sin, asin, tan, atan, exp, log, cosh, sinh, tanh, log10, sum, apply... More... | |
class | slip::GenericMultiComponent2d< Block > |
This is a GenericMultiComponent2d class. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 2d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the double bracket element access. Data are stored using a Matrix of Block. It is essentially an internal class used to define slip::ColorImage, slip::MultispectralImage, slip::DenseVector2dField2d, slip::DenseVector3dField2d. But it can be used to define other 2d Multicomponent structures. More... | |
Namespaces | |
slip | |
This namespace corresponds to the kernel of the Simple Library on Image Processing (SLIP). That is to say that it contains the data structures and the algorithms needed by these data strucutres. | |
Functions | |
template<typename Block > | |
std::ostream & | slip::operator<< (std::ostream &out, const slip::GenericMultiComponent2d< Block > &a) |
template<typename Block > | |
bool | slip::operator== (const slip::GenericMultiComponent2d< Block > &x, const slip::GenericMultiComponent2d< Block > &y) |
template<typename Block > | |
bool | slip::operator!= (const slip::GenericMultiComponent2d< Block > &x, const slip::GenericMultiComponent2d< Block > &y) |
Provides a class to manipulate multicomponent 2d containers.
Definition in file GenericMultiComponent2d.hpp.