while implementing the code (I = double(I); [H,W] = size(I);) getting the Error using graph cuts (line 7) Not enough input arguments.?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Prerna Surbhi
am 16 Apr. 2016
Beantwortet: Image Analyst
am 17 Apr. 2016
I am implementing the Graph cut for image segmentation code provided by by Amarjot
07 Mar 2013 (Updated 04 Dec 2014) The code segments the gray scale image using graph cuts. while implementing the code i am getting error at line 7(I = double(I); [H,W] = size(I);) Error using graph cuts (line 7) Not enough input arguments. so plese help me to resolve the error? please also guide what changes I have to do for attching this code on image.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 17 Apr. 2016
Try calling it like this from a separate script:
grayImage = imread('cameraman.tif');
Ncut = graphcuts(grayImage, 1, 255);
0 Kommentare
Weitere Antworten (1)
Walter Roberson
am 16 Apr. 2016
That code cannot be run by simply clicking on a button or menu item. You must run it from the command line,passing in at least the image array.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!