フィルターのクリア

problem with my GUI (I am currently doing hand signal recognition)

1 回表示 (過去 30 日間)
john john
john john 2012 年 2 月 1 日
編集済み: James 2013 年 9 月 27 日
I am currently doing hand signal recognition, my problem with my GUI if he do snapshot he cant recognize well... but if i do load push button of the image it can recognize well.. I guess i need help for the snapshot that he can recognize well.. if you had any time please message me on skype myjonas_13 and lets talk about it there.. I am willing also to give rewards if someone solve my problem =(
  1 件のコメント
Walter Roberson
Walter Roberson 2012 年 2 月 1 日
I suggest you post a sample snapshot and a sample of an image that is recognized.
http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers

サインインしてコメントする。

回答 (4 件)

Image Analyst
Image Analyst 2012 年 2 月 3 日
I can guarantee any usable gesture recognition system won't be done in just a dozen lines. I can't help you with algorithm development - it would take way too much time - like weeks or months - not just a few minutes which is what we can typically spend on an "Answers" answer. So why don't you see how it's done by people who have already done this? You're not breaking new ground or doing cutting edge research here. It may or may not surprise you but many many people have done this before and you can see what all of them have done if you go here and read their papers: http://iris.usc.edu/Vision-Notes/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics Check out section 21.4. Pick your favorite algorithm and if you have programs related to MATLAB programming (not related to explaining how an algorithm works in some article, which we don't do) then you can come back here and we can help with your MATLAB syntax or other errors that you can't solve by yourself using normal debugger techniques. I hope the link helps you develop a successful gesture recognition system. Good luck.
  1 件のコメント
john john
john john 2012 年 2 月 3 日
wow thanks with this.. naks hope i can learn on this asap =(

サインインしてコメントする。


john john
john john 2012 年 2 月 1 日
can i contact you trough skype sir? so that we can discuss it much further?
i build a fix place set up like fixed background, amount of light, those images being recognize are those images i trained on SOM.. and those snapshot is from real time video capturing or snapshot being process =( i guess i need a code which reconsider or add variation of position of hand images to the network being train?
  3 件のコメント
john john
john john 2012 年 2 月 2 日
sad to say I am from Philippines =(
Walter Roberson
Walter Roberson 2012 年 2 月 2 日
The only time you can see Major Major in his office is when he's out.

サインインしてコメントする。


john john
john john 2012 年 2 月 2 日
but I notice those images I trained using SOM are different on snapshot.. I only train 10 variation of letter "a" ... how do I add data to my network that I trained? which for sure he for sure he can consider that its part or same letter pattern..
  4 件のコメント
john john
john john 2012 年 2 月 3 日
any reply sir Walter ROberson
Walter Roberson
Walter Roberson 2012 年 2 月 3 日
I stayed late at my office, no-one showed up.

サインインしてコメントする。


john john
john john 2012 年 2 月 2 日
cclick the link and you will see those photos...see the title tags for description of which use by train images and new snapshot..
the images is resize, grayscale and blackandwhite using this code..
wa = getsnapshot(vid);
x = wa;
y = double(x) / 1000;
data3 = imresize(y,[40 30]);
data4 = rgb2gray(data3);
%new
img2=im2bw(data4,graythresh(data4));
img2=~img2;
BW2 = imfill(img2,'holes');
z = BW2;
z = z(:);
%load network, simulate
load trained_som_20x20m_10ke_30x40p_ae;
input = sim(network,z);
save('input_recognize.mat', 'input');
but it seems if any movement of hand which is not similar to the images i trained it wont detect.. =(

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by