06-01-2005 10:49 AM
06-01-2005 11:34 AM
06-02-2005 07:47 AM
06-02-2005 08:52 AM
06-02-2005 09:28 AM - edited 06-02-2005 09:28 AM
It sounds like this is what you need to do. The way you are currently reading the file in still is trying to get the entire file into memory at once.
In addition: DFGray - you wrote "A better solution is to read only a portion of your image in memory at once. ...". I am not sure I understand what you mean by read a portion of your image in memory - do you mean to read and process a portion at a time and repeat it for the number of portions I divide it into?
Message Edited by Ed Dickens on 06-02-2005 09:28 AM
02-02-2010 04:34 AM
Hi,
I created a library to do the chunking of array automatically. You can find it here:
Fragmented Array Library:
http://decibel.ni.com/content/docs/DOC-9321
As the name suggests, it creates fragmented arrays. It presents to the user one single large array, but actually automatically creates several smaller ones and manages them transparently. This should allow you to concentrate on the program and algorithms and not the technical aspects of chunking.
Regards,
02-02-2010 04:35 AM
Oops, this thread is 5 years old 🙂
but since someone else might find it, it still makes sense to post here.