i need to create a gui so that i need a click box and so an image 'll get loaded and the output of manipulating this image is also showed
No products are associated with this question.
YourImage = imread(TheInputFileName); fignum = figure(); ax1 = subplot(fignum, 121); image(ax1, YourImage); ManipulatedImage = your_manipulation_function( YourImage ); ax2 = subplot(fignum, 122); image(ax2, ManipulatedImage);
0 Comments