Matlab: How can I display several outputs in the same image?
问题 Let's say my image is img=zeros(100,100,3) , my outputs are several ellipse which i get using a created function [ret]=draw_ellipse(x,y,a,b,angle,color,img) , I can display one ellipse using imshow(ret) .For the moment, I'm trying to show serval ellipse in the image. But i don't know how to code it. will ‘for loop’ work or I need to hold them? 回答1: If this is related to what you were doing in your previous question, then what you need to do is to pass the result of one iteration as input to