Skip to content

Commit 20b6f52

Browse files
authored
Merge pull request #2095 from alicevision/fix/depthmap
Fix binary incompatibility in depthmap
2 parents a409d98 + aa1bccf commit 20b6f52

18 files changed

+17
-26
lines changed

meshroom/aliceVision/DepthMap.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "5.0"
1+
__version__ = "5.1"
22

33
from meshroom.core import desc
44
from meshroom.core.utils import VERBOSE_LEVEL
@@ -240,13 +240,6 @@ class DepthMap(desc.AVCommandLineNode):
240240
range=(1, 5000, 1),
241241
advanced=True,
242242
),
243-
desc.StringParam(
244-
name="sgmFilteringAxes",
245-
label="Filtering Axes",
246-
description="Define axes for the filtering of the similarity volume.",
247-
value="YX",
248-
advanced=True,
249-
),
250243
desc.BoolParam(
251244
name="sgmDepthListPerTile",
252245
label="Depth List Per Tile",

meshroom/cameraTracking.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"DistortionCalibration": "6.1",
1414
"ExportAlembic": "1.0",

meshroom/cameraTrackingDepth.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"DepthMapTracksInjecting": "1.0",
1414
"DistortionCalibration": "6.1",

meshroom/cameraTrackingLegacy.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"DistortionCalibration": "6.1",
1414
"ExportAnimatedCamera": "2.0",

meshroom/cameraTrackingWithoutCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ConvertDistortion": "1.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"ExportAlembic": "1.0",
1414
"ExportDistortion": "2.0",

meshroom/cameraTrackingWithoutCalibrationLegacy.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ConvertDistortion": "1.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"ExportAnimatedCamera": "2.0",
1414
"ExportDistortion": "2.0",

meshroom/multi-viewPhotometricStereo.mg

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

meshroom/photogrammetry.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"nodesVersions": {
66
"CameraInit": "12.0",
77
"CopyFiles": "1.3",
8-
"DepthMap": "5.0",
8+
"Depthmap": "5.1",
99
"DepthMapFilter": "4.0",
1010
"ExportImages": "1.0",
1111
"FeatureExtraction": "1.3",

meshroom/photogrammetryAndCameraTracking.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"DistortionCalibration": "6.1",
1414
"ExportAlembic": "1.0",

meshroom/photogrammetryAndCameraTrackingLegacy.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",
11-
"DepthMap": "5.0",
11+
"Depthmap": "5.1",
1212
"DepthMapFilter": "4.0",
1313
"DistortionCalibration": "6.1",
1414
"ExportAnimatedCamera": "2.0",

0 commit comments

Comments
 (0)