All Projects → UCL → PETPVC

UCL / PETPVC

Licence: Apache-2.0 license
Partial Volume Correction in PET

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects
Nix
1067 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to PETPVC

FAIR.m
Flexible Algorithms for Image Registration
Stars: ✭ 103 (+255.17%)
Mutual labels:  medical-imaging
angiodysplasia-segmentation
Wining solution and its further development for MICCAI 2017 Endoscopic Vision Challenge Angiodysplasia Detection and Localization
Stars: ✭ 76 (+162.07%)
Mutual labels:  medical-imaging
cuda spatial deform
A fast tool to do image augmentation on GPU(especially elastic_deform), can be helpful to research on Medical Image.
Stars: ✭ 115 (+296.55%)
Mutual labels:  medical-imaging
GMIC
An interpretable classifier for high-resolution breast cancer screening images utilizing weakly supervised localization
Stars: ✭ 106 (+265.52%)
Mutual labels:  medical-imaging
Brain-MRI-Segmentation
Smart India Hackathon 2019 project given by the Department of Atomic Energy
Stars: ✭ 29 (+0%)
Mutual labels:  medical-imaging
modelhub
A collection of deep learning models with a unified API.
Stars: ✭ 59 (+103.45%)
Mutual labels:  medical-imaging
NMRI
2D Fourier Transform of Nuclear Magnetic Resonance Imaging raw data
Stars: ✭ 13 (-55.17%)
Mutual labels:  medical-imaging
Improved-Wasserstein-GAN-application-on-MRI-images
Improved Wasserstein GAN (WGAN-GP) application on medical (MRI) images
Stars: ✭ 23 (-20.69%)
Mutual labels:  medical-imaging
dwv-vue
Medical image viewer using DWV (DICOM Web Viewer) and Vue.js.
Stars: ✭ 66 (+127.59%)
Mutual labels:  medical-imaging
medical image segmentation
Medical image segmentation ( Eye vessel segmentation)
Stars: ✭ 90 (+210.34%)
Mutual labels:  medical-imaging
survey-computer-vision-2021
2021年计算机视觉技术综述分类汇总
Stars: ✭ 54 (+86.21%)
Mutual labels:  medical-imaging
dicomifier
A medical image converter
Stars: ✭ 22 (-24.14%)
Mutual labels:  medical-imaging
VNet
Prostate MR Image Segmentation 2012
Stars: ✭ 54 (+86.21%)
Mutual labels:  medical-imaging
medSeg
Medical Image Segmentation Toolkit based on PaddlePaddle - 基于paddle的医学影像分割框架
Stars: ✭ 88 (+203.45%)
Mutual labels:  medical-imaging
MONAILabel
MONAI Label is an intelligent open source image labeling and learning tool.
Stars: ✭ 249 (+758.62%)
Mutual labels:  medical-imaging
ITKSphinxExamples
Cookbook examples for the Insight Toolkit documented with Sphinx
Stars: ✭ 48 (+65.52%)
Mutual labels:  medical-imaging
clara-dicom-adapter
DICOM Adapter is a component of the Clara Deploy SDK which facilitates integration with DICOM compliant systems, enables ingestion of imaging data, helps triggering of jobs with configurable rules and offers pushing the output of jobs to PACS systems.
Stars: ✭ 31 (+6.9%)
Mutual labels:  medical-imaging
LibAUC
An End-to-End Machine Learning Library to Optimize AUC (AUROC, AUPRC).
Stars: ✭ 115 (+296.55%)
Mutual labels:  medical-imaging
dwv-jqmobile
Medical image viewer using DWV (DICOM Web Viewer) and jQuery Mobile.
Stars: ✭ 25 (-13.79%)
Mutual labels:  medical-imaging
Fundus Review
Official website of our paper: Applications of Deep Learning in Fundus Images: A Review. Newly-released datasets and recently-published papers will be updated regularly.
Stars: ✭ 64 (+120.69%)
Mutual labels:  medical-imaging

PETPVC

Build Status Build Status Build status Codacy Badge DOI

PETPVC: toolbox for partial volume correction (PVC) in positron emission tomography (PET)

Publications

When using this toolbox, please include a reference to the paper:

  • PETPVC: a toolbox for performing partial volume correction techniques in positron emission tomography
    BA Thomas, V Cuplov, A Bousse, A Mendes, K Thielemans, BF Hutton, K Erlandsson
    Physics in Medicine and Biology 61 (22), 7975. DOI

Pre-built binaries

Binaries for Linux, Mac and Windows are provided in the 'Release' section on Github. When running the Windows version, you must have installed the Visual C++ Redistributable Packages for Visual Studio 2013 (link). For 64-bit Win7 it is necessary to install both vcredist_x86.exe and vcredist_x64.exe.


Installation from source instructions

The following are required to build this software:

Building and installing

  • Ensure that ITK has been built successfully, with the ITKReview module (Module_ITKReview in CMake) enabled.
  • Clone this repository
git clone https://github.com/UCL/PETPVC.git
  • Create a build directory
mkdir BUILD
  • Change to the build directory
cd BUILD
  • Run CMake
cmake /path/to/repository
  • Build and install
make
make test
make install

Usage

PVC methods

Although there are currently executables for every method, it is based to use petpvc which has options to specify the method and parameters. Type petpvc without arguments to get a usage message.

An example of running iterative Yang with a 6mm PSF:

	petpvc -i <PET> -m <MASK> -o <OUTPUT> --pvc IY -x 6.0 -y 6.0 -z 6.0 [--debug]

where <PET> is the PET image file, <MASK> is the 4-D mask image file and <OUTPUT> is the destination file for the PV-corrected image.

Warning: there are currently 2 options which seem the same:

  • -n: specifies the number of iterations for iterative Yang
  • -k: specifies the number of iterations for deconvolution methods such as Van Cittert and Richardson-Lucy.

Therefore, if you use RL only, you have to use the -k option. You can use both options with for instance IY+RL to first run iterative Yang followed by Richardson-Lucy for extra deconvolution.

Extras

In addition, there are some utilities that you might find useful:

  • pvc_simulate allows you to blur an image with a Gaussian (e.g. to simulate resolution effects)
  • some mask related tools

Notes on input and output files

The applications in this toolbox use ITK image readers and writers and can therefore accept common medical imaging formats such as Nifti, ANALYZE and Nrrd, and raw data with an associated meta-data header (mhd) file.

The tissue classification maps (referred to as mask files) can either be binary or probabilistic. All voxel values in a 3-D volume must be 0 <= x <= 1. The PVC applications expect the mask file to be input as a single 4-D volume, where each 3-D volume consists of a single segmented region.

The use of 4-D volumes facilitates the use of probabilistic segmentations during the PVC. In addition to the constraint that all voxels must be <= 1, The sum of a voxel location across the fourth dimension should be <= 1. Ideally it should be 1, which requires the background to be included as a segmented region.

Special cases where the inputs/outputs are different

Muller-Gartner (MG):

The Muller-Gartner correction requires only the grey matter and white matter masks. Technically, the CSF space should be included as a third region, but the contribution of this region is assumed to be zero. The MG application still requires a 4-D mask volume, where the first volume is grey matter and the second is white matter. The order is important. The 4-D mask file can contain more than two 3-D volumes, but these will be ignored by the MG PVC.

Geometric Transfer Matrix (GTM) method:

GTM cannot produce an image. The output of the GTM is a comma-separated value (CSV) file of regional mean values. The order of the mean values for each region is written in the same order as they appear in the fourth dimension of the mask file.

Single Target Correction (STC) method:

The STC method corrects a single region. The mask image should be a 3-D volume, where each voxel in the target region should be 1. All other voxels should be 0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].