Skip to content

Automating Detector Selection and Parameter Fine-Tuning for Optimal Image Stitching #223

Discussion options

You must be logged in to vote

Hello @fadishaar84,

of course you can create a script to fine tune the image stitching process.

from stitching import Stitcher
stitcher = Stitcher()
settings = {"detector": "sift", "confidence_threshold": 0.2}
stitcher = Stitcher(**settings)
panorama = stitcher.stitch(["img1.jpg", "img2.jpg", "img3.jpg"])

you can try different detectors and lower the confidence_threshold gradually till you get a good result.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by fadishaar84
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #222 on August 01, 2024 05:12.