/******************************************************************** ** Image Component Library (ICL) ** ** ** ** Copyright (C) 2006-2012 CITEC, University of Bielefeld ** ** Neuroinformatics Group ** ** Website: www.iclcv.org and ** ** http://opensource.cit-ec.de/projects/icl ** ** ** ** File : include/ICLCore/Line.h ** ** Module : ICLCore ** ** Authors: Christof Elbrechter ** ** ** ** ** ** Commercial License ** ** ICL can be used commercially, please refer to our website ** ** www.iclcv.org for more details. ** ** ** ** GNU General Public License Usage ** ** Alternatively, this file may be used under the terms of the ** ** GNU General Public License version 3.0 as published by the ** ** Free Software Foundation and appearing in the file LICENSE.GPL ** ** included in the packaging of this file. Please review the ** ** following information to ensure the GNU General Public License ** ** version 3.0 requirements will be met: ** ** http://www.gnu.org/copyleft/gpl.html. ** ** ** ** The development of this software was supported by the ** ** Excellence Cluster EXC 277 Cognitive Interaction Technology. ** ** The Excellence Cluster EXC 277 is a grant of the Deutsche ** ** Forschungsgemeinschaft (DFG) in the context of the German ** ** Excellence Initiative. ** ** ** *********************************************************************/ #ifndef ICL_LINE_H #define ICL_LINE_H #include #include #include namespace icl{ /// The ICLs abstract line class describing a line from Point "start" to Point "end" \ingroup TYPES /** This Line class provides basic abilities for the description of an abstract line. A line is defined by two Points "start" and "end" where each of this points is a 2D integer vector. Lines can be translated by using the "+"- and "-"-operators. In addition it is possible to sample a line into the discrete grid. Internally this sampling procedure is highly optimized by an implementation of Bresenhams line- algorithm, which draws lines without any floating point operation at all. */ class Line{ public: /// Null line of length 0 with and and end point 0 static const Line null; /// Creates a new line from point "start" to point "end" /** @param start start point @param end end point */ Line(Point start=Point::null, Point end=Point::null): start(start),end(end){} /// Creates a new line by given polar coordinates /** @param start start point of the line @param angle angle of the line @param length length of the line */ Line(Point start, float angle, float length); /// translates a line by a given vector /** @param p translation vector @return the translated line */ Line operator+(const Point &p) const { return Line(start+p,end+p); } /// translates a line by a given vector (negative direction) /** @param p translation vector @return the translated line */ Line operator-(const Point &p) const { return Line(start-p,end-p); } /// calculates the euclidean norm of this line /** @return length of the line */ float length() const; /// samples this line from start to end point regarding the given limiting rect /** @param limits each line point is check for being inside of this rect the eases working e.g. on image planes, that have an finite extend. If the limits rect has width*height == 0, the limits are not regarded. @return vector of line Points */ std::vector sample( const Rect &limits=Rect::null ) const; /// samples this line from start to end point regarding the given limiting rect /** This function works essentially like the above function. In this case, the result is not returned, but it is stored into the given vector references. @param xs destination vector for x-coordinates (filled using push_back, so it is not cleared before it is filled) @param ys as xs but for the y-coordinates @param limits (see above)*/ void sample(std::vector &xs,std::vector &ys, const Rect &limits=Rect::null ) const; /// swaps the lines start and end point internally void swap() { Point x=start; start=end; end=x; } /// start point of this line Point start; /// end point of this line Point end; }; /// ostream operator (start-x,start-y)(end-x,end-y) std::ostream &operator<<(std::ostream &s, const Line &l); /// istream operator std::istream &operator>>(std::istream &s, Line &l); } #endif