2020-08-20 10:41:13 -0600 | commented question | Crop/approximate contours You can try taking a look into the Opening functionality (https://docs.opencv.org/trunk/d9/d61/tutorial_py_morphological |
2020-08-20 10:38:26 -0600 | commented question | Connect several cameras openCV python Since python is an "interpreted" programming language, you would achieve better performance using C++ instead. |
2020-06-29 08:14:39 -0600 | commented answer | Image segmentation, where to start? To ease your tasks, you should rotate the image before trying to segment it into rectangles... From what you have, My gu |
2020-06-25 11:56:35 -0600 | answered a question | Image segmentation, where to start? First threshold the image. Then find the contours (just the the outside one) and fit a rotated rectangle to it. Then wit |
2019-10-24 11:40:44 -0600 | commented question | How to remove the background image Could you be more detailed on your question? You wish to keep the segmentated part of your image in a blank background, |
2019-09-23 08:30:37 -0600 | edited answer | Get Rotation and Translation Matrix So looking for a solution on the Web I found that what I wish to do is called extrinsic calibration. To find the best r |
2019-09-23 08:30:00 -0600 | edited answer | Get Rotation and Translation Matrix So looking for a solution on the Web I found that what I wish to do is called extrinsic calibration. To find the best r |
2019-09-23 04:21:01 -0600 | received badge | ● Editor (source) |
2019-09-23 04:21:01 -0600 | edited answer | Get Rotation and Translation Matrix So looking for a solution on the Web I found that what I wish to do is called extrinsic calibration. To find the best r |
2019-09-18 14:12:20 -0600 | answered a question | Get Rotation and Translation Matrix So looking for a solution on the Web I found that what I wish to do is called extrinsic calibration. To find the best r |
2019-09-13 06:47:59 -0600 | answered a question | A dot-product of two matrices Considerering your two matrices are of type cv::Mat, you can simply use the * operator. So if you have two matrices, A a |
2019-09-12 04:41:23 -0600 | received badge | ● Enthusiast |
2019-09-11 05:17:56 -0600 | answered a question | Blocked camera detection using opencv Considering that you won't move the camera, you can save an image of your background, and then you would compare the cam |
2019-09-05 11:06:58 -0600 | asked a question | Get Rotation and Translation Matrix Get Rotation and Translation Matrix I'm programming one Asus Xtion depth camera, wich instead of an RGB image, it gives |