Skip to content

Commit f783104

Browse files
author
Fabien Servant
committed
Adding Image groups
1 parent 20b6f52 commit f783104

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+847
-38
lines changed

meshroom/aliceVision/CameraInit.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "12.0"
1+
__version__ = "12.1"
22

33
import os
44
import json
@@ -473,6 +473,12 @@ class CameraInit(desc.AVCommandLineNode, desc.InitNode):
473473
advanced=True,
474474
enabled=lambda node: node.viewIdMethod.value == "filename",
475475
),
476+
desc.BoolParam(
477+
name="isSequence",
478+
label="Images are a sequence",
479+
description="The images provided as input are part of a sequence with temporal coherency.",
480+
value=False,
481+
),
476482
desc.ChoiceParam(
477483
name="verboseLevel",
478484
label="Verbose Level",

meshroom/aliceVision/ListImages.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0"
1+
__version__ = "1.1"
22

33
from meshroom.core import desc
44
from meshroom.core.utils import VERBOSE_LEVEL
@@ -23,6 +23,12 @@ class ListImages(desc.AVCommandLineNode):
2323
description="Set of paths to image files and/or folders.",
2424
exposed=True,
2525
),
26+
desc.BoolParam(
27+
name="isSequence",
28+
label="Images are a sequence",
29+
description="The images provided as input are part of a sequence with temporal coherency.",
30+
value=False,
31+
),
2632
desc.ChoiceParam(
2733
name="verboseLevel",
2834
label="Verbose Level",

meshroom/cameraTracking.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"nodesVersions": {
66
"ApplyCalibration": "1.0",
7-
"CameraInit": "12.0",
7+
"CameraInit": "12.1",
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",

meshroom/cameraTrackingDepth.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"nodesVersions": {
66
"ApplyCalibration": "1.0",
7-
"CameraInit": "12.0",
7+
"CameraInit": "12.1",
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",

meshroom/cameraTrackingLegacy.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"nodesVersions": {
66
"ApplyCalibration": "1.0",
7-
"CameraInit": "12.0",
7+
"CameraInit": "12.1",
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",

meshroom/cameraTrackingRoma.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"fileVersion": "2.0",
55
"nodesVersions": {
66
"ApplyCalibration": "1.0",
7-
"CameraInit": "12.0",
7+
"CameraInit": "12.1",
88
"CheckerboardDetection": "2.0",
99
"ConvertSfMFormat": "2.0",
1010
"CopyFiles": "1.3",

meshroom/cameraTrackingWithoutCalibration.mg

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

meshroom/cameraTrackingWithoutCalibrationLegacy.mg

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

meshroom/colorCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"releaseVersion": "2025.1.0",
44
"fileVersion": "2.0",
55
"nodesVersions": {
6-
"CameraInit": "12.0",
6+
"CameraInit": "12.1",
77
"ColorCheckerCorrection": "2.0",
88
"ColorCheckerDetection": "2.0",
99
"CopyFiles": "1.3"

meshroom/distortionCalibration.mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"releaseVersion": "2025.1.0",
44
"fileVersion": "2.0",
55
"nodesVersions": {
6-
"CameraInit": "12.0",
6+
"CameraInit": "12.1",
77
"CheckerboardDetection": "2.0",
88
"DistortionCalibration": "6.1",
99
"ExportDistortion": "2.0",

0 commit comments

Comments
 (0)