How to use GraphCutSeamFinder?
I'm new to opencv and I haven't found anything on the internet on how to use GraphCutSeamFinder. I am performing image stitching as a project and I have reached on finding a seam in the images after which I can stitch the images. So far whatever I've studied on image stitching, I've found that Graph Cut seam finding is a very good option for finding a seam.
Here's from where I came to know about GraphCutSeamFinder - docs.opencv.org/2.4/modules/stitching/doc/seam_estimation.html
I am using python for the image stitching project and it seems that GraphCutSeamFinder is only available in opencv C++. If there is a method to find a seam in python do enlighten me.
If there's a better way to find a seam, please let me know.
Thank you in advance.
" it seems that GraphCutSeamFinder is only available in opencv C++" -- yes, unfortunately, this is correct for both opencv2.4 and 3.2.
you're simply out-of-luck, using anything, from the stitching module with python.