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!