


#Autopano giga discount code full#
The full res 18024 x 25899 and 10GB, so I'm not going to upload that unless people are particularly interested. Also implementing some sort of tile culling/bounding box is an easy enough optimisation to be done to get a very significant speedup when dealing with images that don't cover your entire output projection.
#Autopano giga discount code how to#
So if your use case isn't combining final images processed differently its not ideal, but gives an idea for any other code inclined people on how to do it. However it has a few issues, currently it platesolves images by uploading them to nova.astrometry, this is fine when dealing with final compressed 8bit pngs/jpgs (and also very easy to implement), but I wouldn't want to run 1000s of raw subs through it. I've created something which does it for arbitrarily scaled large finished images, by using tiled reprojection and doing everything on disk being memory mapped into memory as chunks are need. That certainly isn't required for most photos, but when you do really large mosaics it is nice to have. It is possible that if you post on the APP forum that Mabula would give you a rule of thumb on how much memory for a mosaic of a certain size.īut if you are only at 32Gb, I would recommend going to 64Gb.įor comparison, I have my main machine for photo processing set up with 256 Gb. I would guess that APP does the in-memory approach, but I don't know. Apps like Photoshop that rely on people working on really big images instead let you do operations with only part of the image in memory. The simplest to program is to assume that you can have the entire image in memory at the same time. I don't know the internal representation of images by APP, so I don't have a good idea for how big a mosaic it can handle for a given memory allocation.įundamentally, there are two ways to handle big images in a software program. So several times when I have run into memory problems with APP that has been the reason. It is very easy to forget that - at least for me - because most programs will just ask the operating system for more memory if they need it. First off, APP requires you to set the maximum memory up front as an application configuration setting.
