Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Help in Matlab! URGENT

Status
Not open for further replies.

Chest

Member level 3
Joined
Sep 18, 2006
Messages
67
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,288
Activity points
1,756
Hi all,

I'm newbie in image processing. I'm face some problem with discrete consine transform.

1) I want to ask how to find the feature extraction from palmprint gray-scale
image. For instance, how to sliding block or calculate Discrete consine
transform (DCT) of image?

2) And how to find it's DCT of feature?

3) How to plot max value of DCT?

NOTE: All in matlab.

Thanks in advance.
 

Hello

I think it can be done this way

X = imread('pass1.jpg');%ANY TEST IMAGE
X = rgb2gray(X);%CONVERSION TO GRAY
Y = DCT2(X);%DCT PERFORMED
imshow(abs(Y));




Go to workspace and select the variable right click on it to plot whatever type of Graph you want to plot.


**broken link removed**



Regards

Robin
 
Last edited by a moderator:

Hello,

I am doing palmprint recognition.
May i know how to find the DCT Coefficient for an image?

Thanks.:|
 

Robinenemy said:
Hello

I think it can be done this way

X = imread('pass1.jpg');%ANY TEST IMAGE
X = rgb2gray(X);%CONVERSION TO GRAY
Y = DCT2(X);%DCT PERFORMED
imshow(abs(Y));




Go to workspace and select the variable right click on it to plot whatever type of Graph you want to plot.


**broken link removed**



Regards

Robin

that same code can be used
hope its similar application
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top