PROBLEM RELATED TO GUI IN MATLAB
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
I am doing project 'COUNTING RBCs and WBCS FROM BLOOD SAMPLE USING IMAGE PROCESSING'. I have completed my task upto counting. This count displays on figure window. I have created seperate GUI to display that count. But, i dont have any idea to display the count of RBCs from figure window to GUI's textbox.
Plz somebody, help me out.. Thanking you..
0 件のコメント
回答 (1 件)
Sean de Wolski
2012 年 2 月 24 日
set(hTextbox,'string',num2str(count));
where hTextbox is the handle to the text box and coutn is the count.
5 件のコメント
angel joseph
2012 年 2 月 24 日
angel joseph
2012 年 2 月 24 日
Walter Roberson
2012 年 2 月 24 日
You would put that set() at the place in the code that is updating "the text of count which is static nd displayed with coding".
angel joseph
2012 年 2 月 25 日
Walter Roberson
2012 年 2 月 25 日
http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.3F
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!