did a pretty good job of explaining everything for opencv proper.
SimpleCV – Computer Vision platform using Python
21–30 of 39 posts
Re: SimpleCV – Computer Vision platform using Python
#22I have to say that this book: http://shop.oreilly.com/product/9780596516130.do did a pretty good job of explaining everything for opencv proper.
Re: SimpleCV – Computer Vision platform using Python
#23Re: SimpleCV – Computer Vision platform using Python
#24It's difficult to effectively use cv libraries (such as opencv) because in order to approach new problems, understanding of the underlying theory and methodology is often necessary. Example code can only go so far to teach the user how to evaluate and adapt to new constraints. simplecv.org is down for me right now, but I hope that it addresses this concern! The principles of computer vision are not too difficult to g…
This is kind of a pattern with CV: it's still far more "art" than "science" at this point.
Re: SimpleCV – Computer Vision platform using Python
#25This library seems to be great for fast exploration of new concepts. So I installed it and tested. I went through a small tutorial and tried to load an image from internet and display, unfortunately it didn't work. Connection failed, and image window showed up but no content... This is rather disappointing, and I was really expecting from this library that it will work out of box.
Anybody else with the same experience?
Re: SimpleCV – Computer Vision platform using Python
#26Unfortunately computer vision libraries and toolsets are the worst offenders of making each algorithm a 'hammer' when traditional problems are not a 'nail'. A good example is "Detecting a Car" ( http://tutorial.simplecv.org/en/latest/examples/parking.html ), where the mean color is used to determine if a car is in the image. A nice little exercise, but it oversimplifies the process. Each allows the user to step in a…
Re: SimpleCV – Computer Vision platform using Python
#27Re: SimpleCV – Computer Vision platform using Python
#28Check out this beard length detector I wrote in 22 lines of Python with SimpleCV http://labs.radiantmachines.com/beard/
Re: SimpleCV – Computer Vision platform using Python
#29Re: SimpleCV – Computer Vision platform using Python
#30In the robotics courses we often build robots that pick up balls etc. So far we used either openCV or Matlab for image processing but generallly turned out to be pathetic solutions given the steep learning curve with openCV.
I will surely give a try to SimpleCV.