How to compare contours?
Mostra commenti meno recenti
In the attached file is a matrix of dose_data for a piece of radiographic film I have irradiated, and respective x and y coordinates for the film.
I can plot specific dose lines (11Gy,12.1Gy), and then plot a circle (representing a tumour) centre 0,0 and radius 5.
contour(col_scale,row_scale,dose_data,[11,12.1]);
hold on;
ROI1= drawcircle('Center',[0,0],'Radius',5,'StripeColor','red');
I would like to be able to compare for example the 11Gy isodose line and the circle (tumour) to see how well it was irradiated. For example getting a DSC or % area of circle covered by the 11Gy dose contour. I have tried different Matlab functions but my data is not in the correct data type/format. Any advice on how to do this would be much appreciated.
Thanks very much in advance.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Image Arithmetic 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!