Algorithm to compute Basis images of an image

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
ramdas
Messages
78
Reaction score
0
I know from the Fourier Analysis
that any signal can be represented
as summation of elementary
signals i.e. basis functions
.Likewise,any image can be
represented as summation of Basis images.

Is there any available code, or
even an algorithm, that would
allow me to compute Basis images
of an image?
 
Physics news on Phys.org
Hey ramdas.

I think you should search for MPEG and JPEG code libraries and look at the source code for an open source project.

That should give you a good lot of code to start off with.
 
You have basis image from Fourier analysis and basis image from other function decomposition. Good basis images used in Computer vision are the eigen vector of the image. You can find explanation by looking to SVD, SVD compression, SVD image decomposition. This method give pertinent ortogonal basis to explain images.
 
@kroni ,@chiro Sir ,I have done basic programming in MATLAB. I have computed magnitude and phase spectrum using "fft2 "function in MATLAB.I am adding my code .But i don't know how to move forward
Code:
clc;
clear all;
close all;

i=imread('C:\Users\RK\Desktop\cameraman.gif');
%i=rgb2gray(i);
i=uint8(i);

figure,
subplot(1,3,1);imshow(i);
%title('\alpha^2 and X_1')
%title('\ite^-1000*|t|');
%title('e^{-1000|t|}');
title('\ite^{-1000 |t|}','Color','b')
%title('Cameraman Gray scale Image');

f1=fft2(i);
f2=log(1+fftshift(f1));

m=abs(f2);
subplot(1,3,2);
imshow(m,[]);
title('Magnitude Spectrum');

phase=angle(f2);
subplot(1,3,3);
imshow(phase,[]);
title('Phase Spectrum');
 
what do you want to obtain ?
 
I think he is trying to get the frequency information of a two-dimensional signal (since I noticed ff2 function there).

If you want to get the gray-scale information you should either do an average function of the RGB values or use a transform like they do in NTSC images.

Also try and plot the image based on re-constructing the signal with a specific bandwidth by creating a bitmap file and passing it to MATLAB for rendering.