Ask Your Question

guy's profile - activity

2018-04-06 08:44:53 -0600 received badge  Student (source)
2016-03-02 09:12:21 -0600 asked a question GaussianBlur ksize - correlation with image size

Hello,

I wrote an algorithm that applies GaussianBlur on several images of different size. I read that GaussianBlur's ksize has to be odd and the same so I tried (5, 5) which works for some images but for some others not (gives me "OpenCV Error: Assertion failed ..."). Is there some correlation between ksize and the input image's size?

2016-01-31 07:14:29 -0600 commented question Can't get opencv to work with eclipse mars (ubuntu 15.10)

Thanks for your quick answer. That solved the problem.

Note: I also needed to include opencv2/imgcodecs.hpp and add opencv_imgcodecs to Libraries (-l)

2016-01-31 07:04:25 -0600 received badge  Editor (source)
2016-01-31 07:03:45 -0600 asked a question Can't get opencv to work with eclipse mars (ubuntu 15.10)

Hello,

I am running Ubuntu 15.10 and installed the current version of Eclipse Mars from eclipse.org. Then I installed the latest version of opencv from the git repository and tried to set up the project described in this tutorial. I followed the tutorial step by step but when I try to build it, I receive the following errors:

image description

My libs are in /usr/local/libs and my includes in /usr/local/include/opencv and I inserted these paths in the project properties just as described in the tutorial.

What am I doing wrong? I already suceeded to run opencv in VisualStudio in Windows 10 and in XCode in Mac OS X. But with Eclipse in Ubuntu it won't work.