Skip to content

Commit 9d890f3

Browse files
author
Fabien Servant
committed
Upgrading nodes versions
1 parent 3bb4113 commit 9d890f3

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

meshroom/roma/MatchMasking.py

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

33
import os
44
from pathlib import Path

meshroom/roma/RomaMatcher.py

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

33
import os
44
from pathlib import Path

python/reducer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def reduce_samples(inputSfMData, imagePairsList, samplesFolder, featuresFolder,
7070
global_matches = avmatch.PairwiseMatches()
7171

7272
for referenceId, pairs in plistByRef.items():
73-
logging.info(f"Processing reference #{referenceId}", flush=True)
73+
logging.info(f"Processing reference #{referenceId}")
7474

7575
# Output features file for the reference image
7676
path_coords = os.path.join(samplesFolder, str(referenceId) + ".npy")

python/sampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def compute_samples(inputSfMData, imagePairsList, warpFolder, certaintyFolder, s
294294
# Retrieve all pairs for this reference image
295295
pairs = plistByRef[referenceId]
296296

297-
logging.info(f"Processing reference #{referenceId}", flush=True)
297+
logging.info(f"Processing reference #{referenceId}")
298298

299299
# Load uncertainties and store them using pair as key
300300
uncertaintiesByPair = build_uncertainties(iinfos, warpFolder, certaintyFolder, pairs, filters, minCertainty)

0 commit comments

Comments
 (0)