CAN I DIRECTLY BROWSE THE THE IMAGE TO GUI USING IMREAD AND IMSHOW FUNCTION ONLY
    2 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    aditya kumar sahu
 am 16 Sep. 2016
  
    
    
    
    
    Kommentiert: Walter Roberson
      
      
 am 17 Sep. 2016
            IMAGE=IMREAD(IMAGENAME); IMSHOW(IMG);
0 Kommentare
Akzeptierte Antwort
  Walter Roberson
      
      
 am 16 Sep. 2016
        What do you mean by "browse" ?
In the code
IMAGE = imread(IMAGENAME);
imshow(IMAGE)
it is permitted for IMAGENAME to be a string which is the exact name of an image file, or to be the name of an image file which is somewhere on your MATLAB path. It is also permitted for IMAGENAME to be in the form of an http url.
However, if you do not already know the name or url of the desired image file, then you will need to use additional functions to locate it. imread() does not have any method to permit users to browse directories to select an image.
2 Kommentare
  Walter Roberson
      
      
 am 17 Sep. 2016
				No, you need additional functions to be able to drag and drop files from outside MATLAB into MATLAB. See https://www.mathworks.com/matlabcentral/answers/24123-drag-and-drop-file-to-figure
If you already have the images represented as graphics objects within the GUI, such as if you had icons for each of the images, then see http://www.mathworks.com/matlabcentral/answers/94681-how-do-i-implement-drag-and-drop-functionality-in-matlab
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Get Started with Image Processing Toolbox finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!