필터 지우기
필터 지우기

How to use Support Vector Machine for Speech recognition

조회 수: 2 (최근 30일)
SAMEER ahamed
SAMEER ahamed 2014년 1월 2일
댓글: Image Analyst 2014년 1월 8일
Hi,
I want to recognize silent speech words based on lip contour centroid key points .
Example : I have created MYSQL Database table column name "Words" , here 1. Hello , 2.How are You ,3. Nice to Meet You . etc.. after i have connected MySQL connection using matlab .Now i want to silent lip SVM(Support Vector Machine Speech Recognition) isolated word Pattern Matching? here reference link which i am following : http://www.ee.oulu.fi/~gyzhao/Download/Databases/OuluVS/lipreading-final-DC.pdf if any solution let me know .
Thanks
  댓글 수: 7
Walter Roberson
Walter Roberson 2014년 1월 6일
You have not defined blue_Image or red_Image or hueThresholdHigh
SAMEER ahamed
SAMEER ahamed 2014년 1월 7일
편집: SAMEER ahamed 2014년 1월 7일
i am not getting lip hue region shape. so far i have applied Adaptive threshold algorithm also ,but i wouldn't get exact lip shape ?
if true
mouthcrop = imcrop(mregcrop ,[x3 y3 w3 h3]);
red_Image = mouthcrop(:,:,1);
blue_Image = mouthcrop(:,:,2);
hueThresholdHigh = graythresh(red_Image);
imCoin = (red_Image > hueThresholdHigh);
end

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2014년 1월 7일
I'm sorry but to me this code looks totally random and disorganized, like you just threw together a bunch of unrelated chunks of code and hope they would somehow magically work together. Taking a (supposed) hue image and converting to YIQ color space? Huh? Taking both the Y and the blue channels and automatically thresholding them? Huh? Then taking the red channel and manually thresholding it? What? Calling imadjust on the Y channel? Totally unnecessary. Then threshold that? What? Measuring the filled binary image but then never doing anything with the results? Why? Then doing a bunch of morphological stuff on a binary image that came originally from the red channel and burning it into the original image. Why not just use bwboundaries and plot to put the outline into the overlay? Okay, that's just a jumble of code with no organized algorithm behind it.
Sorry to be so harsh but there is so much wrong with this algorithm that it isn't worth trying to fix. Like Walter said, we don't do algorithm development in this forum. I suggest you try to follow the algorithm in the paper rather than the one you listed here, which looks nothing like that.
One tip I can give is that for skin, the red channel has the least contrast between kips and surrounding skin, so you you probably shouldn't be using the red channel, at least not by itself.
  댓글 수: 4
SAMEER ahamed
SAMEER ahamed 2014년 1월 8일
편집: SAMEER ahamed 2014년 1월 8일
Here out put result i'm getting ,if any changes required to get exact lip shape boundary ?.
Image Analyst
Image Analyst 2014년 1월 8일
More light is the best solution. Lack of light is giving no contrast to these lips.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Feature Detection and Extraction에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by