How to delete a row from stats table generated by regionprops3 based on table values ?
3 views (last 30 days)
Show older comments
I have generated a stats table by regionprops3 for a 3D binary image. I wish to delete specific rows from the table based on one of the cell value. For e.g if one the column in the table is Volume, i wish to delete all rows with voume less than 200.
My stats table also has "IMAGE" column which is a cell which contains a 3D matrix of the boundary box of the object calculated by regionprops3. I also wish to delete rows based on the size of this IMAGE column.
0 Comments
Answers (1)
Image Analyst
on 21 Jun 2022
Otherwise you could delete rows something like this
badRows = t.Volume < 200;
t(badRows, :) = [];
To do the bounding box computations I suggest you get the 'BoundingBox' property, not the 'Image' property.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!