How to recognition continuous word's based on lip movements
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I have done up to lip boundary with left , right ,upper ,bottom and center key points .so based on these lip movement area how to recognition continuous word's ? based on lip movement center key point's co-ordinates X and Y values dynamically changes ?any idea let me know?
if true
% code
hold off; numberOfBlobs = size(blobMeasurements, 1); for k = 1 : numberOfBlobs blobCentroid = blobMeasurements(k).Centroid; a=text(blobCentroid(1),blobCentroid(2), strcat('X: ', num2str(round(blobCentroid(1))), ' Y: ', num2str(round(blobCentroid(2))))); set(a, 'FontName', 'Arial', 'FontWeight', 'bold', 'FontSize', 12, 'Color', 'yellow'); end end
回答(1 个)
Image Analyst
2014-1-9
That's the kind of complicated algorithm develop we can't do for you. I'm sure it's not trivial - I'm sure people have done Ph.D. dissertations on that so it's way beyond what we can offer here. In your prior posts I think I probably gave you a place where you can find papers on lip reading. Anyway, here it is again: http://iris.usc.edu/Vision-Notes/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Vibration Analysis 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!