How to use Support Vector Machine for Speech recognition

2 次查看(过去 30 天)
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 个评论
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