Reputation: 243
I am creating mosaic of two images based on the region matches between them using sift descriptors. The problem is when the created mosaic's size gets too large matlab runs out of memory. Is there some way of stitching the images without actually loading the complete images in memory. If not how do other gigapixel image generation techniques work or the panorama apps.
Upvotes: 7
Views: 1290
Reputation: 6675
You can potentially use distributed arrays in the parallel computing toolbox
Upvotes: 0
Reputation: 34621
Upvotes: 2
Reputation: 74940
There are a few ways you can save memory:
uint8
for your data. imresample
, and work on the resulting smaller images. Upvotes: 1