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 13ffc15 commit 592ac86Copy full SHA for 592ac86
Pose2Sim/calibration.py
@@ -132,7 +132,7 @@ def read_qca(qca_path, binning_factor):
132
ret += [float(tag.attrib.get('avg-residual'))]
133
C += [tag.attrib.get('serial')]
134
res += [int(tag.attrib.get('video_resolution')[:-1]) if tag.attrib.get('video_resolution') not in (None, "N/A") else 1080]
135
- if tag.attrib.get('model') in ('Miqus Video', 'Miqus Video UnderWater', 'none'):
+ if any(model in tag.attrib.get('model', '').lower() for model in ["video", "none"]):
136
vid_id += [i]
137
138
# Image size
0 commit comments