8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AKAZEによる特徴点検出を試してみた

Posted at

akaze.png

環境

ubuntu 14.04 64bit
OpenCV 3.1.0 + Contrib 3.1.0

AKAZE

OpenCV 3.0から提供された特徴点検出の手法である。
モジュールの説明はここ
またAKAZEを使用した特徴点マッチングのチュートリアルはここ
ただし、コードの説明が古いAPIなので注意が必要。

サンプルコード

特徴点検出と描画のところのみ記述する

cv::Ptr<cv::AKAZE> akaze = cv::AKAZE::create();
std::vector<cv::KeyPoint> keypoints;
akaze->detect(gimage, keypoints);
cv::drawKeypoints(image, keypoints, image);

冒頭の画像は、いつものlena.jpgの特徴点を検出したものである。

参考

thorikawa氏のAKAZE特徴量の紹介と他特徴量との比較は、いろいろ参考になる。  
3.1の実装では、並列化はどうなっているか気になる。

8
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?