- Building Computer Vision Projects with OpenCV 4 and C++
- David Millán Escrivá Prateek Joshi Vinícius G. Mendon?a Roy Shilkrot
- 212字
- 2021-07-02 12:28:28
Object detection
Object detection refers to detecting the location of an object in a given image. This process is not concerned with the type of object. If you design a chair detector, it will not tell you whether the chair in a given image is red with a high back, or blue with a low back—it will just tell you the location of the chair.
Detecting the location of objects is a critical step in many computer vision systems. Consider the following photo:

If you run a chair detector on this image, it will put a green box around all the chairs—but it won't tell you what kind of chair it is.
Object detection used to be a computationally-intensive task because of the number of calculations required to perform the detection at various scales. To solve this, Paul Viola and Michael Jones came up with a great algorithm in their seminal 2001 paper, which you can read at the following link: https://www.cs.cmu.edu/~efros/courses/LBMV07/Papers/viola-cvpr-01.pdf. They provided a fast way to design an object detector for any object.
OpenCV has modules called objdetect and xobjdetect that provide the framework to design an object detector. You can use it to develop detectors for random items such as sunglasses, boots, and so on.
- 數(shù)據(jù)挖掘原理與實踐
- 數(shù)據(jù)庫基礎(chǔ)與應(yīng)用:Access 2010
- Sybase數(shù)據(jù)庫在UNIX、Windows上的實施和管理
- 大數(shù)據(jù)營銷:如何讓營銷更具吸引力
- OracleDBA實戰(zhàn)攻略:運維管理、診斷優(yōu)化、高可用與最佳實踐
- R Object-oriented Programming
- 數(shù)據(jù)挖掘競賽實戰(zhàn):方法與案例
- 數(shù)據(jù)指標(biāo)體系:構(gòu)建方法與應(yīng)用實踐
- 離線和實時大數(shù)據(jù)開發(fā)實戰(zhàn)
- 大數(shù)據(jù)技術(shù)體系詳解:原理、架構(gòu)與實踐
- 推薦系統(tǒng)全鏈路設(shè)計:原理解讀與業(yè)務(wù)實踐
- Trino權(quán)威指南(原書第2版)
- Flume日志收集與MapReduce模式
- GameMaker Game Programming with GML
- Applying Math with Python