Ask Your Question

skooth's profile - activity

2014-01-15 20:29:31 -0600 asked a question Cropping an image on OpenCV

Hi,

I am working on a Circle Detection problem and I need to crop the circle detected on the picture to continue the process. I'm using the Hough algorithm (C++) for the circle detection.

Can anyone help me on how to do this in this algorithm?

Thank you!

2013-12-02 12:46:19 -0600 received badge  Student (source)
2013-12-02 05:14:58 -0600 received badge  Editor (source)
2013-12-02 05:14:06 -0600 answered a question OpenCV compilation issues on Mac OSX Mavericks

Hi,

I finally solve the problem yesterday after several tentatives. I installed homebrew, Cmake 64bits and OpenCV 2.4.7. After solving some linking problems, it worked again. :)

Hope it helps who is facing the same problem.

2013-11-29 07:10:28 -0600 asked a question OpenCV compilation issues on Mac OSX Mavericks

Hi,

I updated my computer and now OpenCV is no longer working on my OSX Mavericks.

I have a C++ algorithm, a CMakesList.txt and a picture on the folder. So, on the terminal I just navigate to the folder, type cmake . and then make, resulting on the following message:

Undefined symbols for architecture x86_64:
  "cv::imread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)", referenced from:
      _main in histogramcomp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [histogramcomp] Error 1
make[1]: *** [CMakeFiles/histogramcomp.dir/all] Error 2
make: *** [all] Error 2

I really tried a lot of things! I was using Homebrew, then updated but it didn't work, so uninstall everything and started with macports, but after everything installed it still didn't work!

What should I do to have this finally working?

Thank you!