[HELP] how to close figure automatic

조회 수: 6 (최근 30일)
Cahyo Nugroho
Cahyo Nugroho 2014년 9월 3일
편집: Salaheddin Hosseinzadeh 2014년 9월 3일
Hi, i have code that i used to detect face. When there is no face, it must return to the begining of the program. My problem when there is no face in front of the camera, i must close the figure first to make the program continue. This is my code :
clc
clear all
% Initiate input
vid=videoinput('winvideo',2,'RGB24_640X480');
set (vid,'SelectedSourceName','input1');
vid.ReturnedColorSpace='rgb';
vid.FramesPerTrigger=1;
vid.FrameGrabInterval=200;
vid.TimeOut=200;
preview (vid)
global sum_bbox;
global bbox;
global FaceFrame;
global sum_bboxeye;
while (true);
% CAPTURE IMAGE
cla reset
data = getsnapshot(vid);
imwrite(data,'data.jpg');
i = imread('data.jpg');
%FUNGSI FACE DETECTOR
face_detection(i);
[baris1,kolom1]=size(bbox);
if bbox == 0 | baris1>=2
data = getsnapshot(vid);
imwrite(data,'data.jpg');
i = imread('data.jpg');
face_detection(i);
close
else
% BBOX SEGMENTATION
FFrameCrop= imcrop(FaceFrame,bbox);
subplot (3,2,2); imshow(FFrameCrop); title ('subimage faceframe');
pause(1)
end
end
Help me please.. thx b4

답변 (1개)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 9월 3일
편집: Salaheddin Hosseinzadeh 2014년 9월 3일
Hi Cahyo,
I don't know how experienced are you, using MATLAB, but don't you think you can close the figure using close gca
close gcf
close all
see MATLAB documentation to understand how to close a specific window.
doc close
I'm sorry if it's the wrong answer, just let me know to remove it and someone esle would definitely answer it.
Hope this helps.
Good Luck!
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2014년 9월 3일
편집: Sean de Wolski 2014년 9월 3일
I think you meant gcf rather than gca
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 9월 3일
편집: Salaheddin Hosseinzadeh 2014년 9월 3일
Thanks Sean,
As you mentioned, that should be gcf rather than gca
I'll edit it.

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by