python framework for FROC/AFROC analysis
Project description
pyfroc
Python framework for FROC/AFROC analysis
Table of contents
About
What pyfroc does
- 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).
What pyfroc doesn't
- 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.
Use case
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.
Scenario #1
- 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.
Scenario #2
- 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.
Scenario #3
- 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.
Instalation
Run the command below in your terminal.
pip install pyfroc
Sample code (CLI)
# 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
Sample code (Python)
from dataclasses import dataclass
from pyfroc.coords import ScannerCoordinates
from pyfroc.loaders import BaseLoader
from pyfroc.keys import RaterCaseKey, T_RatorInput
from pyfroc.signals import Lesion, Response
@dataclass
class SignalRaw:
name: str
x: float
y: float
z: float
r: float
confidence: float
@dataclass
class ReferenceRaw:
case_id: str
modality_id: str
signals: list[SignalRaw]
@dataclass
class ResponseRaw:
rater_id: str
case_id: str
modality_id: str
signals: list[SignalRaw]
T_case_list = list[tuple[ReferenceRaw, ResponseRaw]]
class SampleLoader:
def __init__(self):
self.case_list: T_case_list = []
def __len__(self):
return len(self.case_list)
def __getitem__(self, index: int) -> T_RatorInput:
if index < 0 or index >= len(self):
raise IndexError("Index out of range")
reference_raw, response_raw = self.case_list[index]
# Convert the signal objects to the pyfroc objects
responses = self.read_signals(reference_raw)
lesions = self.read_signals(response_raw)
ratercasekey = self.build_ratercasekey(response_raw)
return ratercasekey, lesions, responses
def read_signals(self, raw_data: ReferenceRaw | ResponseRaw):
ret = []
for i, signal in enumerate(raw_data.signals):
signal_name = f"C{raw_data.case_id}"
if isinstance(raw_data, ResponseRaw):
signal_name += f"_R{raw_data.rater_id}"
signal_name += f"_{i:03d}"
coords = ScannerCoordinates(signal.x, signal.y, signal.z)
response = Response(coords, signal.confidence, signal.r, signal_name)
ret.append(response)
return ret
def build_ratercasekey(self, response_raw: ResponseRaw):
rater_name = response_raw.rater_id
patient_id = response_raw.case_id
study_date = ""
modality = response_raw.modality_id
modality_id = int(response_raw.modality_id)
se_num = ""
return RaterCaseKey(rater_name, patient_id, study_date, modality, modality_id, se_num)
Tutorials
1. Demonstration using sample data
This tutorial demostrates a walkthrough of AFROC analysis using the pyfroc framework.
2. Perform an AFROC experiment
In this tutorial, you will perform an AFROC analysis using the pyfroc framework with your DICOM images.
3. How to modify behavior in pyfroc
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.
Author
Satoshi Funayama (@akchan)
Department of Radiology, Hamamatsu University School of Medicine, Shizuoka, Japan
License
GPLv3
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyfroc-0.3.4.tar.gz
.
File metadata
- Download URL: pyfroc-0.3.4.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e9cea237d2bfda0fa630defa9c6ad73670cd2a8a4b146822640481fbfb85f98 |
|
MD5 | 45810bf84a5f36e1ea87cd420026aa5f |
|
BLAKE2b-256 | 9febbf69685fa246371ee4d52d4c1316a3fcbf3fde30e107d19cc5f42f10f1b9 |
File details
Details for the file pyfroc-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: pyfroc-0.3.4-py3-none-any.whl
- Upload date:
- Size: 79.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 325cac7850931a040954007ae970dc00b6a5132a8ce868d6f8b96679b9441b6d |
|
MD5 | c506cdf798171068cc02bb65c9a5b2a7 |
|
BLAKE2b-256 | cb305f7f57b30ef2b1dedc288db4cc69e2cffb7bad820e3208f9c9ac8a628dd5 |