Python framework for FROC/AFROC analysis
- pyfroc
- Improve the FROC/AFROC analysis process.
- Manage responses of raters.
- The responses can be made using segmentation tools (e.g., 3D Slicer).
- You can use your tool if you write a loader class inheriting BaseLoader class.
- Evaluate responses and devide them into true positive or false positive automatically.
- Using built-in module, the responses within the paired lesion approximated as a sphere is regarded as true positive, otherwise false positive.
- Build a .xlsx file for the RJafroc, a R library which runs statistical tests of AFROC (alternative Free-response receiver operating characteristic) analysis.
- Write images of responses with paired lesions (if exists).
- Statistical analysis of JAFROC. This is out of scope of pyfroc. Use RJafroc for statistical analysis.
- FROC/AFROC analysis including multi-modality references because pyfroc doesn't implement an algorithm to match intermodality lesions.
pyfroc is designed for specific scenarios of FROC/AFROC analysis. pyfroc itself supports only one modality for reference lesions. If you want to compare two modality using two reference modality, run pyfroc for each reference modality, write .xlsx files for RJafroc, and combine the two .xlsx file manually.
Here are the sample scenarios.
- Compare detection performance between radiologists with and without AI
- The responses will be recored on the same series of DICOM images for radiologists with and without AI.
- Compare a standard MRI protocol with an abbreviated protocol in terms of lesion detection.
- The responses will be recored on the same series of DICOM images for both protocols.
- Compare images reconstructed using an advanced method with images reconstructed using conventional method in terms of the lesion detectability.
- Using either series to record responses.
- python >= 3.9
- Input
.seg.nrrd
: e.g. 3D Slicer- ndarray (your python code)
- Output
rjafroc.xlsx
: an excel file for RJafroc R Library (for FROC/AFROC analysis)
Run the command below in your terminal.
pip install pyfroc
# Install pyfroc
pip install pyfroc
# Prepare dicrectories for an experiment
pyfroc prepare --dicom-dir ./dicom --num-of-raters 2 --num-of-modalities 2
# Record responses of the raters using 3D Slicer
# See the turorial 2 for details
# Read the responses and create rjafroc_input.xlsx file for RJafroc analysis
pyfroc evaluate --out-format rjafroc_xlsx --write-img --dicom-dir •/dicom
# Run AFROC statistical analysis using the RJafroc
RScript samples/afroc_analysis.R
from pyfroc.loaders.simple_loader import (
SimpleLoader,
SignalRaw,
ReferenceRaw,
ResponseRaw
)
from pyfroc.raters import WithinLesionRater
from pyfroc.writers import RJAFROCWriter
# Prepare your data
case_list = []
case_list.append((
ReferenceRaw(
case_id="case1",
modality_id="modality1",
signals=[
SignalRaw(name="signal1", x=1, y=2, z=3, r=4, confidence=0.5),
SignalRaw(name="signal2", x=5, y=6, z=7, r=8, confidence=0.6),
]
),
ResponseRaw(
rater_id="rater1",
case_id="case1",
modality_id="modality1",
signals=[
SignalRaw(name="signal1", x=1, y=2, z=3, r=4, confidence=0.5),
SignalRaw(name="signal2", x=5, y=6, z=7, r=8, confidence=0.6),
]
)
))
# Create a loader
loader = SimpleLoader(case_list)
# Create a rater
rater = WithinLesionRater(loader)
# Write the result to a file
RJAFROCWriter.write("rjarcox_input.xlsx", rater)
This tutorial demostrates a walkthrough of AFROC analysis using the pyfroc framework.
In this tutorial, you will perform an AFROC analysis using the pyfroc framework with your DICOM images.
If you want to modify behavior in pyfroc other than CLI options, you can write your own class inheriting base class to make new behavior.
Satoshi Funayama (@akchan)
Department of Radiology, Hamamatsu University School of Medicine, Shizuoka, Japan
GPLv3