OPENCV POLYLINE

asked 2017-01-27 05:26:37 -0600

ramesh gravatar image

updated 2017-01-27 05:33:14 -0600

berak gravatar image

how to draw polyline? actually poly function contain (&Mat,Pts,npts etc...)

how to set pts and npts values? i tried but error:cv mat to cv arr and then i don't know about the these arguments finally i got pixel position in image but how to connect and draw polyline? here i have attached example code but i can't understand and idon,t know about how to set arguments in list

example code::

void polylines(cv::Mat& img, const std::list<std::listcv::Point2i>& polylines)
{
    for (auto& polyline : polylines)
    {
        auto current = polyline.begin();
        auto next = std::next(current, 1);
        for (; next != polyline.end(); current++, next++)
        {
            cv::line(img, *current, *next, cv::Scalar(255));
        }
    }
}
edit retag flag offensive close merge delete

Comments

1

hi, due to a lot of spam , this site had to go moderated.

please be patient, and don't post duplicates, thank you !

berak gravatar imageberak ( 2017-01-27 05:30:36 -0600 )edit