Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion meshroom/nodes/aliceVision/ExportDistortion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0"
__version__ = "2.0"

from meshroom.core import desc
from meshroom.core.utils import VERBOSE_LEVEL
Expand Down Expand Up @@ -27,6 +27,12 @@ class ExportDistortion(desc.AVCommandLineNode):
"Only supports 3DEqualizer lens models.",
value=True,
),
desc.BoolParam(
name="exportAnimatedNukeNode",
label="Export Animated Nuke Node",
description="Export animated distortion for this sequence as nuke file.",
value=False,
),
desc.BoolParam(
name="exportLensGridsUndistorted",
label="Export Lens Grids Undistorted",
Expand Down
2 changes: 1 addition & 1 deletion meshroom/pipelines/cameraTracking.mg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"DepthMapFilter": "4.0",
"DistortionCalibration": "5.0",
"ExportAnimatedCamera": "2.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"FeatureExtraction": "1.3",
"FeatureMatching": "2.0",
"ImageMatching": "2.0",
Expand Down
2 changes: 1 addition & 1 deletion meshroom/pipelines/cameraTrackingWithoutCalibration.mg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"DepthMap": "5.0",
"DepthMapFilter": "4.0",
"ExportAnimatedCamera": "2.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"FeatureExtraction": "1.3",
"FeatureMatching": "2.0",
"ImageMatching": "2.0",
Expand Down
2 changes: 1 addition & 1 deletion meshroom/pipelines/distortionCalibration.mg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"CameraInit": "11.0",
"CheckerboardDetection": "1.0",
"DistortionCalibration": "5.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"Publish": "1.3"
}
},
Expand Down
2 changes: 1 addition & 1 deletion meshroom/pipelines/nodalCameraTracking.mg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"ConvertSfMFormat": "2.0",
"DistortionCalibration": "5.0",
"ExportAnimatedCamera": "2.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"FeatureExtraction": "1.3",
"FeatureMatching": "2.0",
"ImageMatching": "2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ConvertDistortion": "1.0",
"ConvertSfMFormat": "2.0",
"ExportAnimatedCamera": "2.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"FeatureExtraction": "1.3",
"FeatureMatching": "2.0",
"ImageMatching": "2.0",
Expand Down
2 changes: 1 addition & 1 deletion meshroom/pipelines/photogrammetryAndCameraTracking.mg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"DepthMapFilter": "4.0",
"DistortionCalibration": "5.0",
"ExportAnimatedCamera": "2.0",
"ExportDistortion": "1.0",
"ExportDistortion": "2.0",
"FeatureExtraction": "1.3",
"FeatureMatching": "2.0",
"ImageMatching": "2.0",
Expand Down
Loading