Skip to content

Commit 17a0d9f

Browse files
author
Fabien Servant
committed
add camera init type
1 parent aeb77d8 commit 17a0d9f

14 files changed

+17
-16
lines changed

meshroom/nodes/aliceVision/CameraInit.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "11.0"
1+
__version__ = "12.0"
22

33
import os
44
import json
@@ -131,9 +131,10 @@
131131
description="Mathematical model used to represent a camera:\n"
132132
" - pinhole: Simplest projective camera model without optical distortion "
133133
"(focal and optical center).\n"
134-
" - equidistant: Non-projective camera model suited for full-fisheye optics.\n",
134+
" - equidistant: Non-projective camera model suited for full-fisheye optics.\n"
135+
" - equirectangular: Projection model used in panoramas.\n",
135136
value="pinhole",
136-
values=["pinhole", "equidistant"],
137+
values=["pinhole", "equidistant", "equirectangular"],
137138
),
138139
desc.ChoiceParam(
139140
name="distortionType",

meshroom/pipelines/cameraTracking.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"template": true,
66
"nodesVersions": {
77
"ApplyCalibration": "1.0",
8-
"CameraInit": "11.0",
8+
"CameraInit": "12.0",
99
"CheckerboardDetection": "1.0",
1010
"ConvertSfMFormat": "2.0",
1111
"DepthMap": "5.0",

meshroom/pipelines/cameraTrackingWithoutCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"template": true,
66
"nodesVersions": {
77
"ApplyCalibration": "1.0",
8-
"CameraInit": "11.0",
8+
"CameraInit": "12.0",
99
"ConvertDistortion": "1.0",
1010
"ConvertSfMFormat": "2.0",
1111
"DepthMap": "5.0",

meshroom/pipelines/distortionCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"template": true,
66
"nodesVersions": {
7-
"CameraInit": "11.0",
7+
"CameraInit": "12.0",
88
"CheckerboardDetection": "1.0",
99
"DistortionCalibration": "5.0",
1010
"ExportDistortion": "1.0",

meshroom/pipelines/hdrFusion.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"header": {
33
"nodesVersions": {
4-
"CameraInit": "11.0",
4+
"CameraInit": "12.0",
55
"LdrToHdrCalibration": "3.1",
66
"LdrToHdrMerge": "4.1",
77
"LdrToHdrSampling": "4.0",

meshroom/pipelines/multi-viewPhotometricStereo.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"fileVersion": "2.0",
66
"template": true,
77
"nodesVersions": {
8-
"CameraInit": "11.0",
8+
"CameraInit": "12.0",
99
"DepthMap": "5.0",
1010
"DepthMapFilter": "4.0",
1111
"FeatureExtraction": "1.3",

meshroom/pipelines/nodalCameraTracking.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"template": true,
66
"nodesVersions": {
77
"ApplyCalibration": "1.0",
8-
"CameraInit": "11.0",
8+
"CameraInit": "12.0",
99
"CheckerboardDetection": "1.0",
1010
"ConvertSfMFormat": "2.0",
1111
"DistortionCalibration": "5.0",

meshroom/pipelines/nodalCameraTrackingWithoutCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"template": true,
66
"nodesVersions": {
7-
"CameraInit": "11.0",
7+
"CameraInit": "12.0",
88
"ConvertDistortion": "1.0",
99
"ConvertSfMFormat": "2.0",
1010
"ExportAnimatedCamera": "2.0",

meshroom/pipelines/panoramaFisheyeHdr.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"header": {
33
"nodesVersions": {
4-
"CameraInit": "11.0",
4+
"CameraInit": "12.0",
55
"FeatureExtraction": "1.3",
66
"FeatureMatching": "2.0",
77
"ImageMatching": "2.0",

meshroom/pipelines/panoramaHdr.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"header": {
33
"nodesVersions": {
4-
"CameraInit": "11.0",
4+
"CameraInit": "12.0",
55
"FeatureExtraction": "1.3",
66
"FeatureMatching": "2.0",
77
"ImageMatching": "2.0",

0 commit comments

Comments
 (0)