reference to non-existent field solidity
Mostrar comentarios más antiguos
hi I have error message in matlab 2017
reference to non-existent field 'solidity'
Error in Tumor(line denisty={stats.solidity};
how can I add reference
what did i miss ?
Respuesta aceptada
Más respuestas (2)
Mohamed Nasr
el 18 de Abr. de 2019
13 comentarios
Walter Roberson
el 18 de Abr. de 2019
You have
label=logical(bw);
The maximum possible value for that array is 1, corresponding to true.
You calculate tumor_label as the indices of (all of) the areas that have (the same) maximum area. It will not usually be 1.
You have
tumor = ismember(label, tumor_label)
remember that label is a bunch of true and false values, so it is likely that none of them are going to equal the index(es) you found.
You should consider
label = bwlabel(logical(bw));
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Mohamed Nasr
el 20 de Abr. de 2019
Walter Roberson
el 20 de Abr. de 2019
Is there still and active question here?
Mohamed Nasr
el 21 de Abr. de 2019
Mohamed Nasr
el 21 de Abr. de 2019
Walter Roberson
el 21 de Abr. de 2019
Code attached.
Mohamed Nasr
el 21 de Mayo de 2019
0 votos
Categorías
Más información sobre Image Processing Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




