Ask Your Question

DmitryPonv's profile - activity

2020-09-05 10:54:17 -0600 received badge  Popular Question (source)
2020-05-19 09:21:18 -0600 received badge  Notable Question (source)
2019-08-22 21:51:23 -0600 received badge  Popular Question (source)
2018-10-03 14:15:34 -0600 edited question How do I build OpenCV with Tesseract OCR (Text module)

How do I build OpenCV with Tesseract OCR (Text module) I'm trying to build OpenCV with the Tesseract OCR module to use o

2018-10-03 14:14:22 -0600 asked a question How do I build OpenCV with Tesseract OCR (Text module)

How do I build OpenCV with Tesseract OCR (Text module) I'm trying to build OpenCV with the Tesseract OCR module to use o

2018-03-28 14:32:29 -0600 edited question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2018-03-28 14:32:16 -0600 edited question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2018-03-28 14:31:43 -0600 commented question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

If its not clear by the question, All of the parameters are commented out as shown above when this image was taken.

2018-03-28 14:31:18 -0600 edited question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2018-03-28 14:30:44 -0600 commented question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

If its not clear by the question, All of the parameters are commented out above as shown when this image was taken.

2018-03-28 14:00:17 -0600 edited question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2018-03-28 14:00:09 -0600 edited question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2018-03-28 13:57:39 -0600 asked a question OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015

OpenCv SimpleBlobDetector does not find all blobs. C++ , VS2015 I have a simple task for OpenCV SimpleBlobDetector cv::

2012-10-01 22:37:41 -0600 received badge  Editor (source)
2012-10-01 22:32:21 -0600 asked a question How do I resize and smooth images in opencv 2.4.2

I've been searching everywhere for the function to resize an image of type Mat in opencv. I found many solutions, none of which seem to work.

For example, I tried using


size_t s = 2; 
cv::Scalar s2 = cv::Scalar(double 1024, double 760);

Sound_mat.resize(s,s2);

But this gives me an image 2 pixels tall and there are no overloaded methods for resize that take 2 arguments such an width and height. What is size_t, or sv::scalar?

Additionally, I could not find any functions to smooth an image, can someone explain how to smooth (gaussian) the images in the most efficient way with the newest release of opencv?