We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddee6ae commit 1b20114Copy full SHA for 1b20114
src/instrumentman/panorama/process.py
@@ -341,7 +341,7 @@ def run_processing(
341
)
342
343
if scale is None:
344
- scale = 1000
+ scale = _MAX_SCALE
345
346
progress.update(task_seams, completed=len(seams), total=len(seams))
347
@@ -438,11 +438,11 @@ def run_processing(
438
439
440
441
- @ rot_x(np.pi / 2 - float(prelim_v) - camera_pitch)
+ @ rot_x(-(np.pi / 2 - float(prelim_v)) - camera_pitch)
442
443
pt_hz, pt_v, _ = (
444
coord
445
- - (center + apply_rotation(camera_offset * 2, offset_rot))
+ - (center + apply_rotation(camera_offset, offset_rot))
446
).to_polar()
447
pt_hz = (pt_hz - shift).normalized()
448
0 commit comments