reference to non-existent field solidity
Show older comments
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 ?
Accepted Answer
More Answers (2)
Mohamed Nasr
on 18 Apr 2019
13 Comments
Walter Roberson
on 18 Apr 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
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Mohamed Nasr
on 20 Apr 2019
Walter Roberson
on 20 Apr 2019
Is there still and active question here?
Mohamed Nasr
on 21 Apr 2019
Mohamed Nasr
on 21 Apr 2019
Walter Roberson
on 21 Apr 2019
Code attached.
Mohamed Nasr
on 21 May 2019
0 votes
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



