how to find size of image compressed by principal component analysis??
1 次查看(过去 30 天)
显示 更早的评论
i have compressed images/data by PCA,now i want to find size of the image that i have compressed by PCA????
0 个评论
采纳的回答
Image Analyst
2014-2-17
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 个评论
Image Analyst
2014-2-18
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!