Error Brace indexing is not supported

조회 수: 118 (최근 30일)
Life is Wonderful
Life is Wonderful 2023년 4월 4일
댓글: Life is Wonderful 2023년 4월 4일
Hi there,
I am having an odd problem, and I'm not sure how to fix the error below. Any assistance would be greatly appreciated.
Brace indexing is not supported for variables of this type.
Many thanks
Following is the code i am using
imageFileNames = imageFileNames(imagesUsed);
originalImage = imread(imageFileNames{1});
Brace indexing is not supported for variables of this type.
class(imageFileNames)
ans =
'char'
imageFileNames
imageFileNames =
'rcngvieo ram'
where imagesUsed =
25×1 logical array
0
0
1
0
0
0
0
1
0
1
1
0
1
1
0
1
1
1
0
1
1
1
0
0
0
  댓글 수: 3
Life is Wonderful
Life is Wonderful 2023년 4월 4일
Do you expect imageFileNames to be a cell array
This is not a cell array, it's a char
class(imageFileNames)
ans =
'char'
Stephen23
Stephen23 2023년 4월 4일
"This is not a cell array, it's a char "
Sure, which is exactly why you cannot use curly brace indexing with it.
However I did not ask you what it is, I asked you what you expect it to be. A totally different question.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2023년 4월 4일
편집: Image Analyst 2023년 4월 4일
How did you get imageFileNames? Was it from using dir somehow?
% Get file listing of all PNG files in the current folder.
fileList = dir('*.png');
% Convert from structure to cell array.
imageFileNames = {fileList.name};
% Load that cell array into a listbox.
handles.listbox1.String = imageFileNames;
Was it from a listbox of file names that you had loaded up previously? Then you can do
% Get a list of all filenames in the listbox.
imageFileNames = handles.listbox1.String;
% Get the indexes the user selected.
imagesUsed = handles.listbox1.Value;
% Extract the selected names into a subset.
selectedImageFileNames = imageFileNames(imagesUsed);
% Get the name of the first one that was selected:
firstImageFileName = imread(selectedImageFileNames{1});
[EDIT}
Most likely the problem was you did this
imageFileNames = [fileList.name] % Used brackets to concatenate.
instead of this
imageFileNames = {fileList.name} % Should use braces to concatenate.
That will give you spaces in the name and make a long character array, rather than a cell array.
See the FAQ to learn when to use parentheses, braces, and brackets:
  댓글 수: 6
Image Analyst
Image Analyst 2023년 4월 4일
That's not how you do it. Try this
imds = imageDatastore({PathToimageFileNames},"FileExtensions",[".png", ".jpg",".tif"]);
imageFileNames = imds.Files
Life is Wonderful
Life is Wonderful 2023년 4월 4일
It's perfect!!!! You've got the problem under control, now I can see
imageFileNames = imageFileNames(imagesUsed);
K>> class(imageFileNames)
ans =
'cell'
Your proposal work well.
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Bora Eryilmaz
Bora Eryilmaz 2023년 4월 4일
편집: Bora Eryilmaz 2023년 4월 4일
Your imageFileNames variable is not a cell array, so you cannot use brace indexing with it. It is a long char array with words separated by spaces. You can use the split command to generate a cell array of char variables from it:
imageFileNames = 'rcngvieo ram'
imageFileNames = 'rcngvieo ram'
names = split(imageFileNames, ' ')
names = 2×1 cell array
{'rcngvieo'} {'ram' }
names{1}
ans = 'rcngvieo'
names{2}
ans = 'ram'
  댓글 수: 3
Bora Eryilmaz
Bora Eryilmaz 2023년 4월 4일
I am assuming 'ram' is the file extension for your image file. If that is the case, the way you construct the imageFileNames variable is problematic. The imread command needs the full name of the file, including the file extension.
Life is Wonderful
Life is Wonderful 2023년 4월 4일
No, it was a logical index that was changed to a char rather than a cell.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by