Ask Your Question
0

How to create an ROI (Region-Of-Interest or submat) from a contour?

asked 2016-04-19 19:17:26 -0600

Solace gravatar image

Given an image Mat, and a contour (which is a MatOfPoint) in it, how can I create a ROI (Region Of Interest)/submat?

I can see three interesting methods on docs of Mat,

Mat submat(int rowStart, int rowEnd, int colStart, int colEnd) Extracts a rectangular submatrix.

Mat submat(Range rowRange, Range colRange) Extracts a rectangular submatrix.

Mat submat(Rect roi) Extracts a rectangular submatrix.

  • Is there a way to find out rowStart, rowEnd, colStart and colEnd from the contour?

or

  • Is there a way to get rowRange and colRange from the contour?

or

  • Can I make a Rect from the contour?
edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2016-04-19 19:47:49 -0600

Tetragramm gravatar image

updated 2016-04-20 08:43:08 -0600

You want the function Imgproc.boundingRect()

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-04-19 19:17:26 -0600

Seen: 1,298 times

Last updated: Apr 20 '16