How to handle large images in matlab without running out of memory?
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.
There are a few ways you can save memory:
uint8
for your data. imresample
, and work on the resulting smaller images. 您可以在并行计算工具箱中使用分布式数组
链接地址: http://www.djcxy.com/p/4964.html上一篇: 我的Winforms编码方法是否过时?