Input folders or files do not contain specified file extensions:

11 vues (au cours des 30 derniers jours)
Emerson Nithiyaraj
Emerson Nithiyaraj le 29 Oct 2019
Commenté : hla hla myint le 20 Oct 2020
hy,
I have a doubt regarding loading '.nii' (NIFTI) files in my CNN architecture for segmentation (I am using segnet architecture). I have attached the snapshot of the error and my code. I want to load my .nii file dataset inside imds . please suggest me any option.
Untitled.png
  3 commentaires
Emerson Nithiyaraj
Emerson Nithiyaraj le 2 Nov 2019
yes my images are stored in 3D form with extension (.nii) i.e. medical file named NIFTI (Neuro imaging) file. So that i have coded with file extension in creating image datastore. Still, my input file format is not accepted by the network. please help me.
imds = imageDatastore(imageDir,'FileExtensions','.nii');
Walter Roberson
Walter Roberson le 2 Nov 2019
You would need to provide the FileExtensions option for the pixelLabelDatastore call. You will need to provide a ReadFcn property. You will probably also need a ReadFcn property for the imageDataStore .

Connectez-vous pour commenter.

Réponse acceptée

Ajay Pattassery
Ajay Pattassery le 4 Nov 2019
Modifié(e) : Ajay Pattassery le 4 Nov 2019
Here if you do not define the ReadFcn explicitly, the default function used is imread() which is not supported for .nii extension.
Hence add ReadFcn as suggested by Walter Roberson.
pxds = pixelLabelDatastore(labelDir,classNames,labelIds,'FileExtensions','.nii','ReadFcn',sampleReadFcn);
imds = imageDatastore(imageDir,'FileExtensions','.nii','ReadFcn',sampleReadFcn);
The custom ReadFcn looks something like the following
function data = sampleReadFcn(filename)
data = niftiread(filename);
end
Refer here for more information on custom ReadFcn.
Refer niftiread for more info.
  3 commentaires
Ajay Pattassery
Ajay Pattassery le 12 Nov 2019
Please create as a new question.
Walter Roberson
Walter Roberson le 18 Mai 2020
pxds = pixelLabelDatastore(labelDir, classNames, labelIds, 'FileExtensions', '.nii', 'ReadFcn', @sampleReadFcn);
imds = imageDatastore(imageDir, 'FileExtensions', '.nii', 'ReadFcn', @sampleReadFcn);

Connectez-vous pour commenter.

Plus de réponses (1)

Gökay Karayegen
Gökay Karayegen le 18 Mai 2020
Modifié(e) : Gökay Karayegen le 18 Mai 2020
Hello ! I have a problem regarding pixellabel data store too. The screenshot of the error and the part of the code are enclosed above. Do you have any suggentions? I would be really glad if anyone could help me? Regars,
  7 commentaires
Gökay Karayegen
Gökay Karayegen le 26 Mai 2020
Hello again ! Finally I manage to solve the problem. However, this time I am getting an error regarding trainnetwork command. Do you have any suggestions? Thank you once again.
Error using trainNetwork (line 170)
The subscript vectors must all be of the same size.
Error in semantik_derinogrenme (line 145)
net = trainNetwork(trainingData,layers,opts);
Caused by:
Error using sub2ind (line 69)
The subscript vectors must all be of the same size.
hla hla myint
hla hla myint le 20 Oct 2020
Dear
Gökay Karayegen'
My research is same to you. I do not solve error_message PNG. Please help me.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by