Ask Your Question

Lorenzo Riano's profile - activity

2017-12-12 18:17:09 -0600 received badge  Enthusiast
2017-10-13 13:57:12 -0600 commented answer !fixedSize() error

Removing constness from a variable and then modifying it leads to undefined behavior, according to the C++ standard. You

2017-09-14 12:09:09 -0600 commented question Python OpenCV Code to C++

Can you add some information about this code, like where you found it, and what it's supposed to do? Also, can you chang

2017-09-14 12:04:03 -0600 received badge  Organizer (source)
2017-09-14 12:03:26 -0600 received badge  Supporter (source)
2017-09-14 11:53:41 -0600 commented question What's the point of having a const cv::Mat?

GaussianBlur manipulates the OutputArray, which is typedef-ed as const. Basically it doesn't matter if you have a const

2017-09-13 20:01:36 -0600 received badge  Teacher (source)
2017-09-13 14:23:37 -0600 answered a question how to run c++ program on mac os x with terminale

I think the easiest way is to create a cmake project and compile your program using cmake. Details are at http://docs.op

2017-09-13 03:05:32 -0600 received badge  Student (source)
2017-09-12 17:51:31 -0600 asked a question What's the point of having a const cv::Mat?

What's the point of having a const cv::Mat? It looks like openCV can modify a Mat even if it's const. Many function (e.g