how to close a particular figure file if it exists

조회 수: 10 (최근 30일)
Elysi Cochin
Elysi Cochin 2013년 4월 9일
how to close a particular figure file
i used the below figure file.....
figure(6),
set(gcf, 'Name','Selected Image','numbertitle','off');
imshow(inputImage);
now the second time i execute if that figure file exists i want to delete only that particular figure file... i did as below...
if exist('Selected Image', 'file')
close 'Selected Image'
end
no error is showing nor it is getting deleted..... how to write the syntax... please do reply.....

채택된 답변

Jan
Jan 2013년 4월 9일
The created "figure" is not a "file". "Files" are found on the hard disk, not on the screen, while "figures" are the windows on the screen. Although you can store the contents of a figure to a file in the ".fig" format on the harddisk, you cannot "close" such a file.
I guess, you want to check if a figure with this name is open already. Then exist() is not sufficient, but:
existingFig = findobj(get(0), 'Children', 'flat', 'Name', 'Selected Image');
close(existingFig); % Or "delete()"
If no existing figure is found, existingFig is the empty matrix and close([]) does not perform anything.
  댓글 수: 4
Elysi Cochin
Elysi Cochin 2013년 4월 10일
thank u sir... now its working when i modified as you told... thank u all for your help.....
Jan
Jan 2013년 4월 10일
편집: Jan 2013년 4월 10일
@Elysi: if exist('Selected Image', 'file')==0 checks, if there is no file with the name "Selected Image". Because there is most likely no such file, when you did not create it explicitly, the close() command is executed. But this is a very strange test, because you can set any other ununsed file name also:
if exist('ThisFileDoesNotExistBecauseItsNameIsToSTRANGE!', 'file')==0
close('Selected Image');
end
As I've explained already, the figures do not have any relation to files, and checking, if a certain file name does not exist has no connection to closing a figure.
Instead of searching the name of the figure, using the handle would be more convenient and clear:
figHandle = figure();
...
if ishandle(figHandle) % Not closed before
close(figHandle)
end

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

추가 답변 (1개)

Mahdi
Mahdi 2013년 4월 9일
I tried running the same thing and it worked, however, I assume that your main problem is in the if statement, not the close line.
Run the script in debugger and see if it's actually going through the if statement. Look up how the exist() outputs work because 1 is not always the output. I would suggest changing it to something like
if exist('Selected Image', 'file')~=0
close 'Selected Image'
end

카테고리

Help CenterFile Exchange에서 Display Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by