How to create library of constants/matrices for Standalone Application
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, I have a large numbers of constants and matrices (i.e Flat field Noise patterns for image processing) that need to be stored effectively in an executable window app. Constants can be stored without problem however I don't know how to store these matrices as they are really big (3000 x 5000) and are usually worked out by my initial analysis from roughly 40 images. I cannot store all these images and process them whenever I need them. Also because of memory consideration so for one process action, I can only call/store no more than 3 of these matrices.
Thanks
1 Kommentar
Akzeptierte Antwort
Walter Roberson
am 19 Dez. 2011
We don't know.
You wrote "I cannot store all these images and process them whenever I need them.", but putting them in one or more .mat files would be storing them and processing them whenever you needed them. Or when you wrote that were you only referring to storing them in memory?
If you are permitted to use .mat files, then you could use one single .mat file and store each image as a uniquely-named variable in the .mat file. You could then load() the individual variable from the .mat file.
To incorporate a .mat file in to your MATLAB Compiler compiled executable, if you are using deploytool you can add it in through the menus; if you are not using deploytool then use the -a command-line option to name the .mat file as an additional resource to include in the bundle.
2 Kommentare
Walter Roberson
am 20 Dez. 2011
If you make sure to clear the variables out of memory when you finish with them, then since you only have at most three images at a time in memory, you should not have any memory problems.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!