Replies: 1 comment 1 reply
-
You could extend in https://github.com/OpenStitching/stitching/blob/main/stitching/stitcher.py stitch(self, images, feature_masks=[]) with stitch(self, processed_images, original_images, feature_masks) Where you use the processed images and the masks till you have the caneras and afterwards use the original images for the rest of the stitching |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have seen the implementation of masks in the stitching tutorial. I'd like to know if you have the code for using them in a more detailed way (e.g., not just
panorama = stitcher.stitch(images_to_stitch, masks_of_those_images)
).To clarify my need:
panorama = stitcher.stitch(processed_frames, masks)
, I get the panorama of the processed images.This is easy to do, when masks are not necessary, in the "detailed" code (e.g., the one in the stitching tutorial): right before stitching, one overwrites the variables
low_imgs
,medium_imgs
andfinal_imgs
loading the original ones. However, I am not able to make this when masks are at place, as I can only use them in the "simple" code case.Thank you and best regards
Beta Was this translation helpful? Give feedback.
All reactions