Problem with my imread pictures

Asked By 0 points N/A Posted on -
qa-featured

Having already created the GUI and imread pictures, which are individually imread, all things were working but it doesn’t put in my images .

I have also created a loop that uses randperm .

Is there a way I can work with the images since they are individually imread?

SHARE
Best Answer by Shond
Best Answer
Best Answer
Answered By 0 points N/A #109700

Problem with my imread pictures

qa-featured

If you had been created imread pictures by the help of Gui it will not work the reason the pixel of your image is high. After matching pixel in imread picture can able to upload a correct format images.

Since the imread was invented it was working amidst. Although you have been sought it you said that it did not load your image. Your loop was not work also.

I have been advice you before that you must decrease the pixel of your image.I hope your recent problem would relinquish definitely when you will be take the necessary initiatives.

Answered By 15 points N/A #109701

Problem with my imread pictures

qa-featured

Hello Bevise,

I think there is an additional thing that you have to do, and that is selecting the appropriate axis so that the image can be shown. The following is one possibility of what you may be required to do:

The variable 'ha' may have to be containing the list of axes, and another variable which is the file in this case should be having the list with the images that have to be shown.
For instance:

for l = 1: 6
axes( ha(l );
d= imread( strcat(file{i}, '.jpg') );
image(d);
end

Hope this enlightens you a bit.

__

Regards
Clair Charles
 

Related Questions