Match Image in Matlab Guide
古いコメントを表示
Hallo
Need help in the decision problems in the GUIDE. Have a window in which press the button "match" example ( http://www.mathworks.com/matlabcentral/fileexchange/22230-image-matching-with-guide/content/push.m ) How to make so, that when you press the "match" and check the image in the following thrown over EditText1 and EditText2 displayed counting "X-RAY", that is if same, in EditText1 enter 1, if again the same 2 and so on, if you are out of sync in EditText2 enter 1, and so on.
Thanks for the help!
回答 (1 件)
Image Analyst
2013 年 5 月 5 日
Use the set() command to set strings in your GUI controls:
set(handles.editText1, 'String', 'Match');
set(handles.editText2, 'String', 'X-RAY');
and so on.
5 件のコメント
Aleks
2013 年 5 月 5 日
Image Analyst
2013 年 5 月 5 日
Sorry I can't help. I don't understand the problem. Are you saying that you don't know how to get input values from edit text controls? And I don't know what "calculate how much was X-RAY or Match" means.
Aleks
2013 年 5 月 5 日
Aleks
2013 年 5 月 5 日
Jan
2013 年 5 月 5 日
I do not understand, what
...calculate how many times was "X-RAY"
means.
カテゴリ
ヘルプ センター および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!