how to find size of image compressed by principal component analysis??
1 view (last 30 days)
Show older comments
azizullah khan
on 17 Feb 2014
Commented: azizullah khan
on 19 Feb 2014
i have compressed images/data by PCA,now i want to find size of the image that i have compressed by PCA????
0 Comments
Accepted Answer
Image Analyst
on 17 Feb 2014
Each PC image will be the same number of rows and columns, though each pixel might be as many as 8 bytes instead of 1 if you're getting double arrays out and starting with uint8. So it may not be compressed at all. Anyway, it would depend on how many PC components there are. There could be 1, 2, 3, 4, 5, or whatever. How many are you calculating and keeping?
5 Comments
Image Analyst
on 18 Feb 2014
The eigen images are computed just once for all images you want to model. Then for each image, you just need to save the weights applied to each eigenface image. So compression is happening because you're just saving a 1D vector of weights, not all the images. If you're taking 50 eigen images, then each image only needs to save 50 numbers. The eigen images themselves are not considered when you compute compression because they are just the same set of permanent images for all images you want to synthesize.
More Answers (0)
See Also
Categories
Find more on Dimensionality Reduction and Feature Extraction in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!