How to create library of constants/matrices for Standalone Application
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2011-12-19
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 个评论
Walter Roberson
2011-12-20
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.
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!