Subscript indices must either be real positive integers or logicals

1 visualización (últimos 30 días)
hello recently I'm learning matlab. i have this problem:
j = read(img);
u=im2bw(img);
imshow(u);
and main:
if[imgName,path] = uigetfile('*.jpg','Select the MATLAB code file');
img=imread([path imgName]);
j =read(img );
matlab error:Subscript indices must either be real positive integers or logicals. how can I read an image by main function that using other read function?
  4 comentarios
elena rondina
elena rondina el 26 de En. de 2016
Editada: elena rondina el 26 de En. de 2016
ok error message is:
if Subscript indices must either be real positive integers or logicals.
Error in re (line 4)
j =main(k );
read is A function that you've written.what is this error?what's the solution?
Star Strider
Star Strider el 26 de En. de 2016
What is ‘main’?
What is the value of ‘k’?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 26 de En. de 2016
Editada: Image Analyst el 26 de En. de 2016
Why do you have "if" in this line:
if[imgName,path] = uigetfile('*.jpg','Select the MATLAB code file');
Try getting rid of that if, and just start with the brackets. Or better yet, try more robust code like this:
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = 'C:\Program Files\MATLAB'; % Wherever you want....
if ~exist(startingFolder, 'dir')
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.jpg');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)

Más respuestas (0)

Categorías

Más información sobre Search Path en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by