Ask Your Question
1

roipoly matlab function equivalent in OpenCV

asked 2013-02-28 21:28:50 -0600

UserOpenCV gravatar image

updated 2020-12-05 12:01:35 -0600

I am converting a matlab code into C++ using OpenCV libraries.

Can anyone tell me roipoly matlab function equivalent in OpenCV??

Or how to get the same functionality using OpenCV?

BW = roipoly(I, c, r)

BW = roipoly(I, c, r) returns the ROI specified by the polygon described by vectors c and r, which specify the column and row indices of each vertex, respectively. c and r are of same size.

In my case I want to extract triangular roi from the image, so c and r are of size 3x1.

Can anyone tell me how to do this in C++ using OpenCV??

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2013-02-28 23:49:08 -0600

Abid Rahman K gravatar image

There is no corresponding inbuilt function like roipoly in OpenCV.

Instead, OpenCV provides functions like cv2.polyline() and cv2.drawContours(). If you have the coordinates of the vertices, (as shown in matlab) you can create a numpy array with them. Then draw this polygon on a black image, which gives you the mask image as returned by roipoly. An example is demonstrated below :

import cv2
import numpy as np

img = cv2.imread('eight.png')
mask = np.zeros(img.shape[:2],dtype = 'uint8')

c = [194, 253, 293, 245]
r = [72, 14, 76, 125]

rc = np.array((c,r)).T

cv2.drawContours(mask,[rc],0,255,-1)
cv2.drawContours(img,[rc],0,255,2)
mask = cv2.cvtColor(mask,cv2.COLOR_GRAY2BGR)

res = np.hstack((img,mask))

Below is the result I got :

enter image description here

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-02-28 21:28:50 -0600

Seen: 2,572 times

Last updated: Feb 28 '13