4 thoughts on “Sample results from Simple Pano Stitcher”
Hi, I am a newer to OpenCV.
I have get the picture of layer-000.png ~ layer-005.png
But I don’t know how to merge it;
I use the code:
addWeighted( resutlsMat.at(0), 0.2, resutlsMat.at(1), 0.8, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(2), 0.5, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(3), 0.5, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(4), 0.5, 0.0, results);
but it failed.
could you give me a example how to merge the 5 pictures together.
thanks!
I’m trying to use some dense algorithms (optical flow) but I can’t obtain good result while with feature-methods all work!
Did you ever try to stitch with dense methods? Thanks
The imperfection is normal, it’s hard to get perfect results due to unknown lens distortion. I haven’t tried dense optical flow. The stiching is very sensitive to the quality of the matching, which dense optical flow is unlikely to give compared to feature methods.
Hi, I am a newer to OpenCV.
I have get the picture of layer-000.png ~ layer-005.png
But I don’t know how to merge it;
I use the code:
addWeighted( resutlsMat.at(0), 0.2, resutlsMat.at(1), 0.8, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(2), 0.5, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(3), 0.5, 0.0, results);
addWeighted( results, 0.5, resutlsMat.at(4), 0.5, 0.0, results);
but it failed.
could you give me a example how to merge the 5 pictures together.
thanks!
best regards.
Liu
Here’s one way
Hi nghiaho12,
I see that your stitching is not perfect in some points of the final image. Some lines are not matched correctly (e.g. sidewalk), is it correct, or is it only an optical effect?
I’m trying to use your images set with my software to stitch. I wrote some posts in OpenCV forum (http://answers.opencv.org/question/59586/dense-optical-flow-for-stitching/) and EmguCV (http://www.emgu.com/forum/viewtopic.php?f=2&t=5144)
I’m trying to use some dense algorithms (optical flow) but I can’t obtain good result while with feature-methods all work!
Did you ever try to stitch with dense methods? Thanks
Hi,
The imperfection is normal, it’s hard to get perfect results due to unknown lens distortion. I haven’t tried dense optical flow. The stiching is very sensitive to the quality of the matching, which dense optical flow is unlikely to give compared to feature methods.