keep-loving-pythonのブログ

Pythonを愛し続けたいです(Pythonが流行っている限りですが。。。)

OpenCVによる撮影画像の連結をいろいろ試してみる【4】

OpenCVによる撮影画像の連結をいろいろ試してみる【4】

基本は、GitHub等のコードを動かすだけ。

OpenCV-4-with-Python-Blueprints-Second-Edition

これも、比較的シンプルなもの

環境

windows10
python3.7
opencv-python 4.5.3.56

URL

https://github.com/PacktPublishing/OpenCV-4-with-Python-Blueprints-Second-Edition

これのchapter5

結果

下準備

SURF動かないので、ORBへ

    ##finder = cv2.xfeatures2d_SURF.create()
    finder = cv2.ORB.create()

結果

まず、大失敗の例です。これは、⇒ORBに変更したのに、パラメータ(閾値)を変更していないせいです。 別途、詳細示します。。。

こっちは、セーフの例です。