Feature Extraction of Image by using MFCC
4 views (last 30 days)
Show older comments
Good day.
I am currently doing an assignment regarding feature extraction of image by using MFCC. Based on what I found, I have to convert my 2D image into 1D signal and I have done this step (following code):
a = rgb2gray(imread('filename.jpg')); %2D grayscale image
signal = a(:) %1D signal formed by concatenation of all rows
However, i am facing problem of extracting feature from the 1D signal.
Does anyone have any source code regarding this?
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!