SVD and KL Transform-1
SVD and KL Transform-1
SVD TRANSFORM
Image
compression with SVD
AX= λ X
X=Eigen vector
In image processing Eigen Value Eigen Vector are useful to reduce matrix.
If A is image matrix so it reduced by a transform by
D=N^T*A*N
The column of matrix N are the normalized Eigen vector of image A.
An image file can be compressed in many ways and one such way to compress a JPEG image file
is through Singular Value Decomposition.
This JPEG method is commonly used for photographs.
✓ The process of Singular Value Decomposition can be used in many applications, including
watermarking an image, computing w least squares, and optimal prediction
Image Restoration
Image Compression
Object Recognition
K.L.TRANSFORM :-
X= [x1 x2 x3……….xn]
The mean vector of the population is defined as:
Mx=E(x)-[ml m2........mn]^T
The covariance matrix of the population is defined as
C=E((x-Mx)(x-Mx)^T)
For M vectors of a random population, where M is large enough.
Mx=1/M2 xk
Let A be a matrix whose rows are formed from the eigenvectors of the covariance matrix C of
the population.
They are ordered so that the first row of A is the eigenvector corresponding to the largest Eigen
value, and the last row the eigenvector corresponding to the smallest Eigen value.
We define the following Transform:
y=A(x-Mx)
It is called the Karhunen-Loeve transform.