DGtal  0.6.devel
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Data Structures | Functions
DGtal::deprecated Namespace Reference

Data Structures

class  Point3dTo2dXY
 Aim: transforms a 3d point into a 2d point due to a projection on the xy-plane. More...
class  Point3dTo2dXZ
 Aim: transforms a 3d point into a 2d point due to a projection on the xz-plane. More...
class  Point3dTo2dYZ
 Aim: transforms a 3d point into a 2d point due to a projection on the yz-plane. More...
class  SCellToPoint
 Aim: transforms a scell into a point. More...
class  SCellToMidPoint
 Aim: transforms a scell into a real point (the coordinates are divided by 2) More...
class  SCellToArrow
 Aim: transforms a signed cell into an arrow, ie. a pair point-vector. More...
class  SCellToInnerPoint
 Aim: transforms a signed cell into a point, basically a linel into the indirect incident pixel center. More...
class  SCellToOuterPoint
 Aim: transforms a sigend cell into a point, basically a linel into the direct incident pixel center. More...
class  SCellToIncidentPoints
 Aim: transforms a linel into a pair of points, which are the centers of the two incident pixels. More...
class  SCellToCode
 Aim: transforms a 2d scell, basically a linel, into a code (0,1,2 or 3),. More...
class  GreedyDecomposition
 Aim: Computes the greedy decomposition of a sequence into segments (the last element of a given segment is the first one one of the next segment). More...
class  MaximalSegments
 Aim: Computes the set of maximal segments of a sequence. Maximal segments are segments that cannot be included in other segments. This class is a model of CDecomposition. More...
class  DomainMetricAdjacency
 Aim: Describes digital adjacencies in a digital domain that are defined with the 1-norm and the infinity-norm. More...

Functions

template<typename Segment >
std::ostream & operator<< (std::ostream &out, const GreedyDecomposition< Segment > &object)
template<typename TSegment >
std::ostream & operator<< (std::ostream &out, const MaximalSegments< TSegment > &object)
template<typename Domain , Dimension maxNorm1>
std::ostream & operator<< (std::ostream &out, const DomainMetricAdjacency< Domain, maxNorm1, Domain::Space::dimension > &object)

Detailed Description

Deprecated functions and types of the DGtal library.


Function Documentation

template<typename Domain , Dimension maxNorm1>
std::ostream & DGtal::deprecated::operator<< ( std::ostream &  out,
const DomainMetricAdjacency< Domain, maxNorm1, Domain::Space::dimension > &  object 
)
inline

Overloads 'operator<<' for displaying objects of class 'DomainMetricAdjacency'.

Parameters:
outthe output stream where the object is written.
objectthe object of class 'DomainMetricAdjacency' to write.
Returns:
the output stream after the writing.

Definition at line 234 of file DomainMetricAdjacency.ih.

{
object.selfDisplay( out );
return out;
}
template<typename Segment >
std::ostream& DGtal::deprecated::operator<< ( std::ostream &  out,
const GreedyDecomposition< Segment > &  object 
)

Overloads 'operator<<' for displaying objects of class 'GreedyDecomposition'.

Parameters:
outthe output stream where the object is written.
objectthe object of class 'GreedyDecomposition' to write.
Returns:
the output stream after the writing.
template<typename TSegment >
std::ostream & DGtal::deprecated::operator<< ( std::ostream &  out,
const MaximalSegments< TSegment > &  object 
)
inline

Overloads 'operator<<' for displaying objects of class 'MaximalSegments'.

Parameters:
outthe output stream where the object is written.
objectthe object of class 'MaximalSegments' to write.
Returns:
the output stream after the writing.

Definition at line 570 of file MaximalSegments.ih.

{
object.selfDisplay( out );
return out;
}