xpano icon indicating copy to clipboard operation
xpano copied to clipboard

Batch export operations

Open krupkat opened this issue 1 year ago • 2 comments

Base: Implement "Export all" action Stretch goal: Implement "Export selected" action

Starting point: Code location

krupkat avatar Aug 15 '22 15:08 krupkat

Some more though needs to go into how panorama state is being handled.

Currently the crop / autofill results are being kept in memory only for the selected panorama. This is because the full resolution panoramas can quickly go into GBs of memory, so it isn't feasible to keep all of them.

We could save only the crop / autofill options per each panorama for lower memory requirements, however the stitch algorithm isn't deterministic, so the result could be quite surprising (especially for crop).

This should be solved by saving the camera parameters after the first successful stitch and then reapplying them in the export/stitch code (setTransform).

krupkat avatar Sep 22 '22 10:09 krupkat