[資訊] 影像特徵

OpenCV特徵點提取演算法對比

https://www.p-chao.com/2017-06-14/opencv%E7%89%B9%E5%BE%81%E7%82%B9%E6%8F%90%E5%8F%96%E7%AE%97%E6%B3%95%E5%AF%B9%E6%AF%94/


【電腦視覺】2. 特徵點檢測:Harris, SIFT, SURF, ORB

https://zhuanlan.zhihu.com/p/36382429


OpenCV探索之路(二十三):特徵檢測和特徵匹配方法匯總

https://www.cnblogs.com/skyfsm/p/7401523.html


Python OpenCV 視覺特徵提取和匹配

https://zhuanlan.zhihu.com/p/391448297


相似圖片搜索的原理

http://www.ruanyifeng.com/blog/2011/07/principle_of_similar_image_search.html


相似圖片搜索的原理(二)

https://www.ruanyifeng.com/blog/2013/03/similar_image_search_part_ii.html


圖像特徵比對(一)-取得影像的特徵點

https://chtseng.wordpress.com/2017/05/06/%E5%9C%96%E5%83%8F%E7%89%B9%E5%BE%B5%E6%AF%94%E5%B0%8D%E4%B8%80-%E5%8F%96%E5%BE%97%E5%BD%B1%E5%83%8F%E7%9A%84%E7%89%B9%E5%BE%B5%E9%BB%9E/


圖像特徵比對(二)-特徵點描述及比對

https://chtseng.wordpress.com/2017/05/22/%e5%9c%96%e5%83%8f%e7%89%b9%e5%be%b5%e6%af%94%e5%b0%8d%e4%ba%8c-%e7%89%b9%e5%be%b5%e9%bb%9e%e6%8f%8f%e8%bf%b0%e5%8f%8a%e6%af%94%e5%b0%8d/


利用電腦視覺計算種子發芽數目

https://chtseng.wordpress.com/2017/05/12/%e5%88%a9%e7%94%a8%e9%9b%bb%e8%85%a6%e8%a6%96%e8%a6%ba%e8%a8%88%e7%ae%97%e7%a8%ae%e5%ad%90%e7%99%bc%e8%8a%bd%e6%95%b8%e7%9b%ae/


全面綜述:圖像特徵提取與匹配技術

https://www.cvmart.net/community/detail/2973


關鍵點檢測器是一個非常受歡迎的研究領域,因此這些年來已經開發了許多強大的演算法。關鍵點檢測的應用包括物體識別和跟蹤,圖像匹配和全景拼接以及機器人製圖和3D建模等。檢測器的選擇除了需要比較上述轉換中的不變性之外,還需要比較檢測器的檢測性能和處理速度。


經典關鍵點檢測器:目的是為了最大化檢測精度,複雜度一般不是首要考慮因素。

  • HARRIS- 1988 Harris Corner Detector (Harris, Stephens)
  • Shi, Tomasi- 1996 Good Features to Track (Shi, Tomasi)
  • SIFT- 1999 Scale Invariant Feature Transform (Lowe) -None free
  • SURT- 2006 Speeded Up Robust Features (Bay, Tuytelaars, Van Gool) -None free


現代關鍵點檢測器:目的用於智慧手機和其他可攜式裝置上的即時應用。 

  • FAST- 2006 Features from Accelerated Segment Test (FAST) (Rosten, Drummond)
  • BRIEF- 2010 Binary Robust Independent Elementary Features (BRIEF) (Calonder, et al.)
  • ORB- 2011 Oriented FAST and Rotated BRIEF (ORB) (Rublee et al.)
  • BRISK- 2011 Binary Robust Invariant Scalable Keypoints (BRISK) (Leutenegger, Chli, Siegwart)
  • FREAK- 2012 Fast Retina Keypoint (FREAK) (Alahi, Ortiz, Vandergheynst)
  • KAZE- 2012 KAZE (Alcantarilla, Bartoli, Davidson)



#特徵, 相似, 比對

 

留言