Skip to content

Commit

Permalink
[pipelines] Nodal Tracking: Add image segmentation to the template
Browse files Browse the repository at this point in the history
  • Loading branch information
cbentejac committed Dec 7, 2023
1 parent 360efb3 commit 7d6157c
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions meshroom/pipelines/nodalCameraTracking.mg
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@
"fileVersion": "1.1",
"template": true,
"nodesVersions": {
"ScenePreview": "2.0",
"ExportAnimatedCamera": "2.0",
"FeatureMatching": "2.0",
"NodalSfM": "1.0",
"CameraInit": "9.0",
"TracksBuilding": "1.0",
"ImageSegmentation": "1.0",
"FeatureExtraction": "1.3",
"RelativePoseEstimating": "1.0",
"Publish": "1.3",
"ScenePreview": "2.0",
"ImageMatching": "2.0",
"ConvertSfMFormat": "2.0"
"CameraInit": "9.0",
"NodalSfM": "1.0",
"ConvertSfMFormat": "2.0",
"Publish": "1.3",
"ExportAnimatedCamera": "2.0",
"FeatureMatching": "2.0",
"RelativePoseEstimating": "1.0"
}
},
"graph": {
Expand All @@ -39,13 +40,14 @@
0
],
"inputs": {
"input": "{CameraInit_1.output}"
"input": "{ImageSegmentation_1.input}",
"masksFolder": "{ImageSegmentation_1.output}"
}
},
"CameraInit_1": {
"nodeType": "CameraInit",
"position": [
0,
-200,
0
],
"inputs": {}
Expand Down Expand Up @@ -138,6 +140,7 @@
"model": "{NodalSfM_1.output}",
"undistortedImages": "{ExportAnimatedCamera_1.outputUndistorted}",
"useMasks": false,
"masks": "{ImageSegmentation_1.output}",
"pointCloudParams": {
"particleSize": 0.001,
"particleColor": "Red"
Expand All @@ -156,6 +159,20 @@
"{ScenePreview_1.output}"
]
}
},
"ImageSegmentation_1": {
"nodeType": "ImageSegmentation",
"position": [
0,
0
],
"inputs": {
"input": "{CameraInit_1.output}",
"maskInvert": true
},
"internalInputs": {
"color": "#80766f"
}
}
}
}

0 comments on commit 7d6157c

Please sign in to comment.