Ask HN: What are the best resources to learn computer vision?
11–20 of 59 posts
Re: Ask HN: What are the best resources to learn computer vision?
#12I started by getting a webcam or two and trying out various projects: marker tracking (made an optical IR pass filter and tracked an IR LED with two cameras), object segmentation (e.g measure geometry of certain-colored objects). Measure the speed or count the number of cars passing by your street. Try to implement an OCR for utility meter. There are lot's of applications you can train yourself in, and I guarantee th…
Re: Ask HN: What are the best resources to learn computer vision?
#13Re: Ask HN: What are the best resources to learn computer vision?
#14A good online reference is: http://opencv-python-tutroals.readthedocs.io/en/latest/py_tu...
Re: Ask HN: What are the best resources to learn computer vision?
#15Disclaimer: Never worked with any technology related to Computer Vision, just a bloodboy beginner Python programmer.
Re: Ask HN: What are the best resources to learn computer vision?
#16Also, for a general and high level introduction to neural networks, I wrote a Learning Deep Learning in Keras http://p.migdal.pl/2017/04/30/teaching-deep-learning.html, focusing on visual tasks.
Re: Ask HN: What are the best resources to learn computer vision?
#17cs231n by Andrej Karpathy : http://cs231n.github.io
However let's keep in mind that the field of computer vision is much vaster than that. Deep learning approaches have been very successful at solving problems in computer vision, but not all of them and not without drawbacks. I believe any course on classic computer vision will give him more insight as to what challenges computer vision aims to solve, how, and what approach might solve what problem.
Re: Ask HN: What are the best resources to learn computer vision?
#18For a full course, Nothing beats CS231n: Convolutional Neural Networks for Visual Recognition http://cs231n.stanford.edu/ by Andrej Karpathy et al. Also, for a general and high level introduction to neural networks, I wrote a Learning Deep Learning in Keras http://p.migdal.pl/2017/04/30/teaching-deep-learning.html , focusing on visual tasks.
Re: Ask HN: What are the best resources to learn computer vision?
#19OpenCV and http://www.pyimagesearch.com/ disclaimer: not related to any of these
Re: Ask HN: What are the best resources to learn computer vision?
#20Does anyone know if tech like OpenCV is used at companies developing their own "computer vision" product, maybe at Tesla? Or do they build their own technology from scratch which isn't available to public domain? Or do they say fork OpenCV and build upon it and heavily modify as OpenCV could be seen as 'outdated' technology. Disclaimer: Never worked with any technology related to Computer Vision, just a bloodboy begi…
Usually no OpenCV on successful products. Facebook Ads has dedicated research engineers implementing their real time photo analysis algorithms.