|
hi!
I have an image processing loop that looks up all the images
in a folder and acquires some data. During the
postprocessing, I display the image, and the points where I
get the data using following commands:
figure(imdisp)
image(threshdata*255); %plot a thresholded image
hold on;
plot(sat_nr_pos(:,:,2),sat_nr_pos(:,:,1),'wo'); %plot
points where I get some data (21 points)
plot(temp_nr_pos(:,:,2),temp_nr_pos(:,:,1),'wo'); %idem
I checked the timing, and found that the display of the
image took only 0.02 s, roughly, but the plotting of the
points (42 points in all) takes ten times more.
Does anyone know why it is so, and if it's possible to do it
quicker? I ceased displaying the points, as it takes too
much time, but it would be useful...
Thanks in advance!
Gavrilo
|