We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be24d8b commit a42124eCopy full SHA for a42124e
client/dive-common/constants.ts
@@ -53,7 +53,11 @@ const otherVideoTypes = [
53
];
54
55
const calibrationFileTypes = [
56
+ 'cam',
57
+ 'json',
58
'npz',
59
+ 'yml',
60
+ 'zip',
61
62
63
const fileVideoTypes = [
client/platform/desktop/backend/native/viame.ts
@@ -157,6 +157,7 @@ async function runPipeline(
157
158
if (meta.multiCam.calibration) {
159
command.push(`-s measurer:calibration_file="${meta.multiCam.calibration}"`);
160
+ command.push(`-s calibration_reader:file="${meta.multiCam.calibration}"`);
161
}
162
} else if (pipeline.type === stereoPipelineMarker) {
163
throw new Error('Attempting to run a multicam pipeline on non multicam data');
0 commit comments