We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08e9c09 commit 467531dCopy full SHA for 467531d
gisnav/pose_estimators/__init__.py
@@ -10,5 +10,13 @@
10
"""
11
from .pose_estimator import PoseEstimator
12
from .keypoint_pose_estimator import KeypointPoseEstimator
13
-from .superglue_pose_estimator import SuperGluePoseEstimator
14
-from .loftr_pose_estimator import LoFTRPoseEstimator
+try:
+ from .superglue_pose_estimator import SuperGluePoseEstimator
15
+except ModuleNotFoundError as e:
16
+ # Submodule not loaded
17
+ pass
18
19
+ from .loftr_pose_estimator import LoFTRPoseEstimator
20
21
22
0 commit comments