File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/instrumentman/panorama Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -249,17 +249,17 @@ def cli_measure(**kwargs: Any) -> None:
249249 option (
250250 "--scale" ,
251251 help = "Panorama scale in [pixels/rad]" ,
252- type = FloatRange (0 , 5215 , min_open = True )
252+ type = FloatRange (0 , 5210 , min_open = True )
253253 ),
254254 option (
255255 "--width" ,
256256 help = "Width of complete sphere panorama in [pixels]" ,
257- type = IntRange (0 , 32767 , min_open = True )
257+ type = IntRange (0 , 32735 , min_open = True )
258258 ),
259259 option (
260260 "--height" ,
261261 help = "Height of complete sphere panorama in [pixels]" ,
262- type = IntRange (0 , 16383 , min_open = True )
262+ type = IntRange (0 , 16367 , min_open = True )
263263 ),
264264 constraint = mutually_exclusive
265265)
Original file line number Diff line number Diff line change 4242from .metadata import read_metadata , PanoramaMetadata
4343
4444
45- _MAX_SCALE = np .iinfo (np .int16 ).max // (2 * np .pi ) - 1
45+ _MAX_SCALE = 5210 # np.iinfo(np.int16).max // (2 * np.pi)
4646
4747
4848def rot_x (angle : float ) -> np .typing .NDArray [np .float64 ]:
You can’t perform that action at this time.
0 commit comments