MATLAB: Using PCA how to reduce the dimension of image

compressionmotion capturepca

hi.. im working on computer vision .here i want to compression the motion capture data without any loss .for that .,initially i want to work with PCA .can anyone help me please to code the image using PCA.?

Best Answer

PCA can be used to reduce the dimensionality, but it is a lossy process. If you are not limited to lossless compression, then the princomp tutorial:
doc princomp
is a good starting point.
Related Question