Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

cv::Mat has similar slicing options, than those you use in numpy already,

imgThr(Range(y,y+1), Range::all())

would be the c++ counterpart to the numpy:

imgThr[row:row+1, :]

cv::Mat has similar slicing options, than those you use in numpy already,

imgThr(Range(y,y+1), Range::all())

would be the c++ counterpart euivalent to the numpy:

imgThr[row:row+1, :]

cv::Mat has similar slicing options, than those you use in numpy already,

imgThr(Range(y,y+1), Range::all())

would be the c++ euivalent equivalent to the numpy:

imgThr[row:row+1, :]