필터 지우기
필터 지우기

Help me to display present, previous, and total of my result in gui

조회 수: 1 (최근 30일)
john john
john john 2013년 1월 28일
gi everyone can you help me to display present, previous, and total of my result in gui this is the gui http://i648.photobucket.com/albums/uu201/myjonas13/myguis_zpsd52b6606.png
this is the code
function start_snap_Callback(hObject, eventdata, handles)
% hObject handle to snap_shot (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.ss,'string','start');
set(handles.words,'string','');
set(handles.stop_snap,'enable','on');
set(handles.start_snap,'enable','off');
set(handles.set_interval,'enable','off');
set(handles.adc,'enable','off');
load('pass_val_cam.mat', 'vid');
load('pass_val_interval.mat', 'interval_val');
ntrvl = str2double(interval_val);
while strcmp(get(handles.ss,'string'),'start') == 1
wa = getsnapshot(vid);
axes(handles.snap_shot);
imshow(wa);
verybest; %image processing
set(handles.words,'String',Neggs); %neggs is the result
present result tag is : present
previous result tag is: previous
total result tag is: words
for the buttonbox i want to delete the present result and subtract the total result and tag is: delprestotal
ty for your help..
  댓글 수: 3
Image Analyst
Image Analyst 2013년 1월 28일
I second that. I've read this at least 5 times and I have no idea what you're trying to say. You already know how to send a string to a text control, so what's the problem?
john john
john john 2013년 1월 28일
my head was getting dumb haha.. well my problem only present result are just presented.. =(
how do i implement that ?

댓글을 달려면 로그인하십시오.

답변 (1개)

john john
john john 2013년 1월 28일
my head was getting dumb haha.. well my problem only present result are just presented.. =(
how do i implement that ?

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by