Hausdorff distance calculation in SegmentComparison module

Currently, Hausdorff distance calculation in Segment Comparison is unsigned - switching the order of segments used for comparison does not change the result of calculation. It is often critical to know the sign of the distance. For example, if I want to quantify the coverage of the tumor area given the defined ablation region, unsigned HD of 5 mm does not tell me whether tumor region is sticking out of the ablated zone by 5 mm, or there is a 5 mm safety margin that was ablated around the tumor.

I looked at the source code of SegmentComparison, which pointed me to the plastimatch filter implementing the calculation. If I understand correctly, the algorithm is to calculate signed distance map for the second label, identify boundary for the first label, and then iterate over the boundary pixels to calculate HD metrics. However, in this loop effectively the absolute of the distances is taken, and so points inside and outside the label boundary are treated the same way.

I wonder if I am missing something in how the module should be used, since it is part of SlicerRT, and I would think that in radiation therapy this question of directionality should also be quite important.

@cpinter @gcsharp can you share your thoughts on this, and the intent behind reporting HD in SegmentComparison and plastimatch dice as it is reported now? Is the use case I have in mind too distant from the RT applications?

cc: @Kmacneil0102

To further illustrate my point, here’s an example “tumor” and “ablation” datasets:

image

Symmetric distance reported by plastimatch (same filter as used by SegmentComparison - no direction considered):

$ plastimatch dice --hausdorff tumor.nrrd ablation.nrrd                                                        
Hausdorff distance = 12.079405
Avg average Hausdorff distance = 2.225087
Max average Hausdorff distance = 4.450174
Percent (0.95) Hausdorff distance = 5.149281
Hausdorff distance (boundary) = 12.079405
Avg average Hausdorff distance (boundary) = 2.441764
Max average Hausdorff distance (boundary) = 4.633363
Percent (0.95) Hausdorff distance (boundary) = 6.916576

$ plastimatch dice --hausdorff ablation.nrrd tumor.nrrd                                                        
Hausdorff distance = 12.079405
Avg average Hausdorff distance = 2.225087
Max average Hausdorff distance = 4.450174
Percent (0.95) Hausdorff distance = 5.149281
Hausdorff distance (boundary) = 12.079405
Avg average Hausdorff distance (boundary) = 2.441764
Max average Hausdorff distance (boundary) = 4.633363
Percent (0.95) Hausdorff distance (boundary) = 6.916576

Signed distance calculated with itk.DirectedHausdorffDistanceImageFilter - I think this is the one that often is needed for volume coverage applications:

$ python itk_hd.py                                                                                             
Ablation to tumor: 12.079405
Tumor to ablation: 0.000000

itk_hd.py script:

import itk

tumor=itk.imread('tumor.nrrd')
ablation=itk.imread('ablation.nrrd')

a2t = itk.DirectedHausdorffDistanceImageFilter.New(ablation,tumor)
t2a = itk.DirectedHausdorffDistanceImageFilter.New(tumor,ablation)

a2t.Update()
t2a.Update()

print('Ablation to tumor: %f' % (a2t.GetDirectedHausdorffDistance()))
print('Tumor to ablation: %f' % (t2a.GetDirectedHausdorffDistance()))
1 Like

Interesting question. I’ll let @gcsharp answer the original question, as I’m not familiar with the depths of all the RT applications enough to be able to answer this. I haven’t had the need for a signed distance yet, so this has been fine for our use cases.

Do you need the signed distance for a specific use case? If yes, can you describe it?

Based on the definition of Hausdorff distance, it seems to me that it is unsigned by definition (and probably that’s why you get a 0 from ITK too). If you want a signed Hausdorff, then I think that if I’m right in this, then instead of tweaking the current Hausdorff class, a new SignedHausdorff class should be created if needed.

The one calculated by ITK is directed, see definition here: https://itk.org/Doxygen/html/classitk_1_1DirectedHausdorffDistanceImageFilter.html.

The specific use case is evaluation of the coverage of the planned ablation zone with the actual ablated region. I need to be able to differentiate between the tumor edge being at the distance inside or outside the ablation zone (like in the example I showed in my previous post). I had a student working on a project, and I realized he was using SegmentComparison and reporting HDs, but interpretation of the distance between segments inside and outside is very important in that particular use case, and it was not provided by the module.

Did you intend SegmentComparison to be used for the evaluation of agreement between segmentations done by different readers/tools? Is there any other tool in SlicerRT to help with the task of evaluating quality of coverage of the planned treatment region by a certain dose contour?

Directed, yes. Signed, no. As I understood you wanted a signed distance.

DVH is the usual way to evaluate coverage.

Yes, ideally I want to have something that differentiates and quantifies the distance inside from the distance outside. But I believe directed is already more useful than symmetric in the use case I described.

1 Like

Dose volume histogram (DVH) is a much richer and clinically more meaningful metric than Hausdorff distance could be, because it takes into account dose distribution and provides a histogram and not just a single value. DVH tells how large part of a region of interest is under/overtreated and this metric is used ubiquitously in clinical practice.

Hausdorff distance characterizes segmentation error and typically it does not matter which contour is more outside or inside, because the difference is expected to be small (if the difference is significant then segmentation is failed and it is not very important how). I don’t remember anybody using “signed” Hausdorff distance.

1 Like

Yes, I agree it is more meaningful, but it is specific to radiotherapy. Can you apply that tool in a situation outside radiation therapy evaluation, where you have two binary contours - one corresponding to the tumor, and one corresponding to the ablation margin?

Yes, I again agree, but as I tried to explain earlier - the use case is not to compare two segmentations of the same thing, but to use HD to evaluate tumor target coverage. In the example below, situation on the left can be considered as failure of the procedure, but the HD reported by SegmentComparison module will be identical between the two. Do you agree it is important to distinguish between the two situations?

image

Signed distance would give an idea about directionality. But even directed distance, as already implemented in ITK, would be more informative, as it will not treat distances equally.

This kind of difference will not always be as obvious visually, and I am afraid the users of the module will not notice this difference, and will just use the numbers produced by the module to come to a conclusion (as happened in the situation I had with the student). Addition of the signed directed distance to the SegmentComparison interface would in my opinion will be very helpful, and it is already implemented in ITK.

HD was used in this kind of applications before, for example see Multimodality Non-Rigid Image Registration for Planning, Targeting and Monitoring during CT-guided Percutaneous Liver Tumor Cryoablation - PMC. I have not done a thorough review of the literature to see how commonly it is used, but it makes sense to me.

I promise if I again failed to make my point clear, I will not bother this thread again - enough is enough!

Max HD will be the same. But if you get the minimum, it will be 0 instead of non-zero, which means there is intersection. Maybe you should check the minimum too. Unfortunately Plastimatch HD does not provide that, but there is this class also in SegmentComparison logic that can get you that number (after conversions but with segmentations it’s nothing really)

I understand your point about the directed HD. I think it’s time to just wait until @gcsharp has time to chime in about that.

1 Like

It’s a good discussion that I think is worth the time. Doing one-sided HD is an interesting proposition it is just not yet clear for me if it is a good solution for your needs (or there are any other good use cases).

HD is good for verifying that two segmentations are the same. However, for volumetric analysis, such as evaluating coverage, DSC and related metrics (TP, TN, FP, FN percentages) are probably more appropriate.

This is exactly the kind of treatment that you can evaluate with DVH. To compute DVH, you need to create a dose volume from your ablation region (export to scalar volume and optionally rescale the intensity to 0-100 range and apply a Gaussian to make it a bit more realistic) and use that to compute DVH for the tumor segment. You can segment multiple regions (target volume, maybe subregions where you want to have higher dose, organs at risk, etc.) to get an even better idea of how good the treatment was. You can also use DVH comparison module to compare the actual DVH to the ideal DVH curves.

@fedorov Definitely give using DVH a thought, because as Andras says ablation and RT are very similar in this sense. For example the ablation margin you use is analogous with the CTV/PTV (clinical/planning target volume) concept of RT. DVH is the main vehicle of evaluating plans and calculated doses.

Yes, I agree. It is an interesting discussion. There are many potentially useful metrics.

One quick hack would be to evaluate Hausdorff distance between Tumor \union Ablation and Ablation. This would give you maximum miss.

For signed distance, you would start with a histogram of distances, some negative, some positive. How would you propose to condense them?

Thank you for all the responses. This is helpful and interesting.

I think there are two aspects to my question:

  1. how to calculate the various measures for the specific use case, and what is the “best” (for the lack of a better word!) one - I had my own ideas, and I learned a lot more here, thank you for that!
  2. how to improve SegmentComparison module so that it provides more information and hopefully reduces possibility of error for a future user. For this one, my suggestion remains to add directed HD to the list of metrics provided by the module, and discuss the difference between the various HD flavors in the documentation. I am still worried there is a real danger (I witnessed that) that a user can read a paper like the one I referenced, take the module, and proceed with HD calculations, which may end up invalid for a specific situation.

I don’t agree with this. Distances are more intuitive to interpret, as they provide value that is meaningful clinically, and they are more actionable.

That sounds like a lot of work to “fake” DVH, and I don’t quite understand the benefit yet. I can see how this potentially could be quite interesting to explore, if one has spatial distribution of some meaningful value over the ablation region, such as maximum/minimum temperature at each voxel, but for the simple case we have, we only have the segmentation of a single region. I probably need to read and think more about DVN.

I did give it a quick try, and failed to select a regular scalar volume as “Dose volume” in “Dose Volume Histogram” module, since those need to be “dose volumes”: SlicerRT/DoseVolumeHistogram/qSlicerDoseVolumeHistogramModuleWidget.cxx at master · SlicerRt/SlicerRT · GitHub (not sure what this means in terms of attributes that have to be populated).

Maybe report stats for negative and positive values separately?

Tissue ablation is RT, regardless of the energy source, and so the same basic methods are applicable as for other RT procedures.

Generating a dose volume is not faking anything. It allows much more realistic representation of the dose distribution than a closed surface. You can have a very sharp gradient at the edge of the treated volume, but if you want to be a bit more realistic then you can add a transition zone at the edge.

To make a scalar volume usable as dose volume in Slicer, you need to set a few node attributes (dose unit, etc). @cpinter do you have a list of required attributes?

We could also simply produce a histogram of distances and let the user crunch the numbers as they see fit.

In general, I agree a DVH approach would be a reasonable evaluation method. But I can imagine cases where there is not enough information to estimate tissue damage, and distance is a reasonable surrogate.

Good point in general. But I have to say I do not know off-hand how I would populate those. All I have really is the segmentation of the volume intended to be treated, and segmentation of the region that is interpreted as the ablated region by the domain expert. De facto I will be faking the dose volume, since the semantics I have in hand for those region is different from what one would need for dose volume.

We could, and that would be helpful for a more sophisticated user, but I am not so sure about users coming from clinical or clinical research background.

I’ve checked the Dose Volume Histogram module and it can actually use any scalar volume as “dose volume”, you just need to uncheck Show dose volumes only checkbox.

If you want to make a scalar volume a full-fledged dose volume then execute this script:

import SampleData
volumeNode = SampleData.SampleDataLogic().downloadMRHead()

# Create patient and study and put the volume under the study
shNode = slicer.modules.subjecthierarchy.logic().GetSubjectHierarchyNode()
patientItemID = shNode.CreateSubjectItem(shNode.GetSceneItemID(), "Patient 1")
studyItemID = shNode.CreateStudyItem(patientItemID, "Study 1")
volumeShItemID = shNode.GetItemByDataNode(volumeNode)
shNode.SetItemParent(volumeShItemID, studyItemID)

# Set volume node appear as dose volume
volumeNode.SetAttribute("DicomRtImport.DoseVolume","1")
volumeNode.GetDisplayNode().SetAndObserveColorNodeID("vtkMRMLColorTableNodeFilePlasma.txt")
shNode.SetItemAttribute(studyItemID, "DicomRtImport.DoseUnitName", "GY")
shNode.SetItemAttribute(studyItemID, "DicomRtImport.DoseUnitValue", "1e-6")
shNode.RequestOwnerPluginSearch(volumeShItemID)

The DVH module can also compute metrics of the dose distribution. V and D metric allow you to specify a dose value or a volume (absolute or percentage) and give you the corresponding volume or dose value, respectively. It can be used to quickly evaluate the quality of the treatment, for example it can tell you what percentage of the volume received sufficient dose; or how much dose was delivered to 95% of the volume.

These all are very expressive and clinically widely used metrics. I would strongly recommend to use these instead of trying to invent something new.

You may also find DVH comparison module useful. It can determine how well a dose distribution matches the planned distribution. This is used for example to assess effect of patient motion.

  1. There is a checkbox under the selector “Show dose volumes only”. If you uncheck it then you can select non-dose volumes, and then the histogram becomes an “Intensity Volume Histogram”
  2. You can convert any volume to a dose volume in subject hierarchy in the right-click menu. In your case it will be a fake dose volume, but you can specify any unit, not just GY

+1

Thanks for the pointers! I have not made time yet to try it out and respond, but I will.