Error , find entropy of 3d volumetric image on GLCM features ?
Mostra commenti meno recenti
I will find GLCM feature. But error follow as:
b=niftiread("D:\DATASET\Task01_BrainTumour\imagesTr\BRATS_001.nii");
b1=b(:,:,:,1);
cmap = copper(256);
recolored_image = rgb2gray(b1, cmap);
error as following;
Error using rgb2gray
Too many input arguments.
Risposte (2)
Walter Roberson
il 25 Ago 2022
rgb2gray() has never supported more than one input, and has never supported recoloring images.
rgb2ind supports passing in a colormap. You could recolor an image by using
ind = rgb2ind(b1, cmap);
recolored_image = ind2rgb(ind, cmap);
Abderrahim. B
il 25 Ago 2022
0 voti
Hi!
b1 is not truecolor image that is a m-by-n-by-3 numeric array. b1 in your case is a m by n by l by 1 (4 D array). use reshape to deal with this.
Hope this helps
4 Commenti
Walter Roberson
il 25 Ago 2022
This is a potential problem -- but it would not affect the fact that rgb2gray does not accept two parameters.
Abderrahim. B
il 25 Ago 2022
How can I forget that rgb2gray accept only one input argument! Thanks @Walter Roberson
Hla Hla
il 25 Ago 2022
Modificato: Walter Roberson
il 28 Ago 2022
Walter Roberson
il 28 Ago 2022
What is size(b) after you read it?
Categorie
Scopri di più su Texture Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!