Ask Your Question

Scott_777's profile - activity

2020-12-09 21:18:17 -0600 commented answer getting area points inside contour

It should be like this: thickness=cv2.FILLED

2020-12-08 21:22:05 -0600 commented answer opencv 4.1.2 - TypeError: Expected Ptr<cv::UMat> for argument '%s'

This helped to solve my issue, Thanks!

2020-04-09 19:47:53 -0600 commented answer how to test - is line straight ?

According to your answer, contours[i].size() == 2 means line is perfectly straight. What if the line is not perfectly st

2020-04-09 19:42:40 -0600 commented answer how to test - is line straight ?

According to your answer, contours[i].size() == 2 means line is perfectly straight. What if the line is not perfectly st

2020-04-09 02:22:45 -0600 commented answer CopyTo() and Clone() functions

So, it means copy() and clone() does the same task?

2020-04-08 20:12:24 -0600 received badge  Enthusiast
2020-04-07 02:30:33 -0600 answered a question How to initialize Mat size and fill it with zeros in a class ?

How about this: Mat new_img = Mat::zeros(1, 49, CV_64FC1); Or if you wanna create a Mat similar like some existing im