mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 07:48:37 +02:00
[core] make range complete block size accessible to command line nodes
* range 'blockSize' is now the complete block size (equal for all iterations) * command lines nodes can use this complete block size to compute the iteration number on software side; delegate range cropping for last iteration to software. * 'effectiveBlockSize' is still accessible through 'rangeEffectiveBlockSize' parameter
This commit is contained in:
parent
ff00b192bc
commit
275c4133fe
1 changed files with 2 additions and 1 deletions
|
@ -269,7 +269,8 @@ class Range:
|
|||
"rangeStart": self.start,
|
||||
"rangeEnd": self.end,
|
||||
"rangeLast": self.last,
|
||||
"rangeBlockSize": self.effectiveBlockSize,
|
||||
"rangeBlockSize": self.blockSize,
|
||||
"rangeEffectiveBlockSize": self.effectiveBlockSize,
|
||||
"rangeFullSize": self.fullSize,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue