drawing on an image in loop

조회 수: 9 (최근 30일)
Philip
Philip 2012년 7월 2일
How can I draw on an from loop iterations, without 'imread' and 'imwrite'?
EDIT: Inside the loop, I am doing some processing to determine the pixel coordinates of certain features. Once I have these coordinates, I am using them to draw a square on the image at these locations. I would like the loop to draw the first square on the first iteration, and also draw the second square on the second iteration and so on... until I have 100 squares. Is there a way to update the image like this without having to load and save the image each time?
At the moment, I am using:
for i=1:100
img = imread('img.png');
% !! DO SOME PROCESSING HERE !!
imwrite(output,'img.png');
end
However, the use of 'imread' and 'imwrite' takes a long time because the images are large.
Can the loop be altered to create an updated image, and then use 'imwrite' after the loop to save the result?

답변 (2개)

Sean de Wolski
Sean de Wolski 2012년 7월 2일
편집: Sean de Wolski 2012년 7월 2일
You are literally overwriting the same file each time? If so, then you absolutely don't need to save it on each iteration.
img = imread('img.png');
for ii = 1:100;
img = do_stuff_with_image(img); %stuff will be done 100x
end
imwrite(img,'img.png');
  댓글 수: 4
Philip
Philip 2012년 7월 2일
편집: Philip 2012년 7월 2일
Thanks for your help. I am overlaying the squares on top of an already existing image. At the end of the loop I want to be able to see the image with all 100 squares overlayed.
By using 'imread' and 'imwrite' inside the loop, I can achieve the following:
1st iteration:
Read image (containing no squares yet)
Do processing to overlay square on image at specific location
imwrite to save the result (image with one square)
2nd iteration:
Read image (now contains 1 square, overlayed)
Do processing to draw a different square at another location
imwrite to save the result (image with two squares)
and so on...
But this is very slow, and I was wondering if there was a more efficient way
Ryan
Ryan 2012년 7월 2일
편집: Ryan 2012년 7월 2일
If you are using imwrite() to save the image file with a square marked on it then I'm assuming you have a matrix with the square on it already, so why not just redifine the 'starting image' at the end of the loop. For example:
I = imread('image.png');
for m = 1:100
% Draw your rectangles and do your processing on I
I = ProcessedImage;
end
imwrite(I,'image.png')

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


Image Analyst
Image Analyst 2012년 7월 2일
편집: Image Analyst 2012년 7월 2일
Philip: Why do you need to read and write it every iteration? Just read it once, enter the loop and "burn" the box into the image by writing into the image array directly (i.e. don't use plot() or rectangle() because those just place boxes in the overlay), then call cla and imshow(). Finally when the loop exits, call imwrite. This will be much faster and accomplish the same thing.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by