camera adjuster fails #235
Unanswered
VeeranjaneyuluToka
asked this question in
Q&A
Replies: 2 comments 3 replies
-
Hey, how do you aquire your Images? Have a look on #135 (comment) |
Beta Was this translation helpful? Give feedback.
3 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Nice and very detailed implementation.
I tried your stitched detailed notebook on our own set of images (no.of images are 3). but it fails with below error
error Traceback (most recent call last)
/tmp/ipykernel_2447557/2344847478.py in
8
9 cameras = camera_estimator.estimate(features, matches)
---> 10 cameras = camera_adjuster.adjust(features, matches, cameras)
11 cameras = wave_corrector.correct(cameras)
/mmdetection3d/tools/marine/stitching/camera_adjuster.py in adjust(self, features, pairwise_matches, estimated_cameras)
44
45 def adjust(self, features, pairwise_matches, estimated_cameras):
---> 46 b, cameras = self.adjuster.apply(features, pairwise_matches, estimated_cameras)
47 if not b:
48 raise StitchingError("Camera parameters adjusting failed.")
error: OpenCV(4.9.0) /io/opencv/modules/calib3d/src/compat_ptsetreg.cpp:125: error: (-215:Assertion failed) !err.empty() in function 'update'
I tried with all the camera adjusters, it works with no but none of other options works. I am not getting correct outuput with no adjuster. Could you please let me know what could be the reason and possible ways to analyse further on this issue.
Thanks,
Veeru.
Beta Was this translation helpful? Give feedback.
All reactions