Skip to content

Commit

Permalink
Merge pull request #112 from nipreps/enh/pet-model-2
Browse files Browse the repository at this point in the history
ENH: PET uptake model
  • Loading branch information
oesteban authored Dec 16, 2022
2 parents 0353039 + c046fba commit 962ff19
Show file tree
Hide file tree
Showing 7 changed files with 316 additions and 22 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"pandas",
"seaborn",
"skimage",
"sklearn",
"svgutils",
"tqdm",
"transforms3d",
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ install_requires =
joblib
nipype>= 1.5.1, < 2.0
nitransforms>=21.0.0
numpy>=1.17.3
nest-asyncio>=1.5.1
scikit-image>=0.14.2
scikit-learn>=1.0.1
scipy>=1.8.0
test_requires =
codecov
coverage
Expand Down
179 changes: 179 additions & 0 deletions src/eddymotion/data/pet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
#
# Copyright 2022 The NiPreps Developers <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# We support and encourage derived works from this project, please read
# about our expectations at
#
# https://www.nipreps.org/community/licensing/
#
"""PET data representation."""
from collections import namedtuple
from pathlib import Path
from tempfile import mkdtemp

import attr
import h5py
import nibabel as nb
import numpy as np
from nitransforms.linear import Affine


def _data_repr(value):
if value is None:
return "None"
return f"<{'x'.join(str(v) for v in value.shape)} ({value.dtype})>"


@attr.s(slots=True)
class PET:
"""Data representation structure for PET data."""

dataobj = attr.ib(default=None, repr=_data_repr)
"""A numpy ndarray object for the data array, without *b=0* volumes."""
affine = attr.ib(default=None, repr=_data_repr)
"""Best affine for RAS-to-voxel conversion of coordinates (NIfTI header)."""
brainmask = attr.ib(default=None, repr=_data_repr)
"""A boolean ndarray object containing a corresponding brainmask."""
frame_time = attr.ib(default=None, repr=_data_repr)
"""A 1D numpy array with the midpoint timing of each sample."""
total_duration = attr.ib(default=None, repr=_data_repr)
"""A float number represaenting the total duration of acquisition."""

em_affines = attr.ib(default=None)
"""
List of :obj:`nitransforms.linear.Affine` objects that bring
PET timepoints into alignment.
"""
_filepath = attr.ib(
factory=lambda: Path(mkdtemp()) / "em_cache.h5",
repr=False,
)
"""A path to an HDF5 file to store the whole dataset."""

def __len__(self):
"""Obtain the number of high-*b* orientations."""
return self.dataobj.shape[-1]

def set_transform(self, index, affine, order=3):
"""Set an affine, and update data object and gradients."""
reference = namedtuple("ImageGrid", ("shape", "affine"))(
shape=self.dataobj.shape[:3], affine=self.affine
)
xform = Affine(matrix=affine, reference=reference)

if not Path(self._filepath).exists():
self.to_filename(self._filepath)

# read original PET
with h5py.File(self._filepath, "r") as in_file:
root = in_file["/0"]
dframe = np.asanyarray(root["dataobj"][..., index])

dmoving = nb.Nifti1Image(dframe, self.affine, None)

# resample and update orientation at index
self.dataobj[..., index] = np.asanyarray(
xform.apply(dmoving, order=order).dataobj,
dtype=self.dataobj.dtype,
)

# update transform
if self.em_affines is None:
self.em_affines = [None] * len(self)

self.em_affines[index] = xform

def to_filename(self, filename, compression=None, compression_opts=None):
"""Write an HDF5 file to disk."""
filename = Path(filename)
if not filename.name.endswith(".h5"):
filename = filename.parent / f"{filename.name}.h5"

with h5py.File(filename, "w") as out_file:
out_file.attrs["Format"] = "EMC/PET"
out_file.attrs["Version"] = np.uint16(1)
root = out_file.create_group("/0")
root.attrs["Type"] = "pet"
for f in attr.fields(self.__class__):
if f.name.startswith("_"):
continue

value = getattr(self, f.name)
if value is not None:
root.create_dataset(
f.name,
data=value,
compression=compression,
compression_opts=compression_opts,
)

def to_nifti(self, filename, insert_b0=False):
"""Write a NIfTI 1.0 file to disk."""
nii = nb.Nifti1Image(self.dataobj, self.affine, None)
nii.header.set_xyzt_units("mm")
nii.to_filename(filename)

@classmethod
def from_filename(cls, filename):
"""Read an HDF5 file from disk."""
with h5py.File(filename, "r") as in_file:
root = in_file["/0"]
data = {
k: np.asanyarray(v) for k, v in root.items() if not k.startswith("_")
}
return cls(**data)


def load(
filename,
brainmask_file=None,
frame_time=None,
frame_duration=None,
):
"""Load PET data."""
filename = Path(filename)
if filename.name.endswith(".h5"):
return PET.from_filename(filename)

img = nb.load(filename)
retval = PET(
dataobj=img.get_fdata(dtype="float32"),
affine=img.affine,
)

if frame_time is None:
raise RuntimeError(
"Start time of frames is mandatory (see https://bids-specification.readthedocs.io/"
"en/stable/glossary.html#objects.metadata.FrameTimesStart)"
)

frame_time = np.array(frame_time, dtype="float32") - frame_time[0]
if frame_duration is None:
frame_duration = np.diff(frame_time)
if len(frame_duration) == (retval.dataobj.shape[-1] - 1):
frame_duration = np.append(frame_duration, frame_duration[-1])

retval.total_duration = frame_time[-1] + frame_duration[-1]
retval.frame_time = frame_time + 0.5 * np.array(frame_duration, dtype="float32")

assert len(retval.frame_time) == retval.dataobj.shape[-1]

if brainmask_file:
mask = nb.load(brainmask_file)
retval.brainmask = np.asanyarray(mask.dataobj)

return retval
36 changes: 24 additions & 12 deletions src/eddymotion/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,6 @@ def fit(
if seed or seed == 0:
np.random.seed(20210324 if seed is True else seed)

bmask_img = None
if dwdata.brainmask is not None:
_, bmask_img = mkstemp(suffix="_bmask.nii.gz")
nb.Nifti1Image(
dwdata.brainmask.astype("uint8"), dwdata.affine, None
).to_filename(bmask_img)
kwargs["mask"] = dwdata.brainmask

kwargs["S0"] = _advanced_clip(dwdata.bzero)

if "num_threads" not in align_kwargs and omp_nthreads is not None:
align_kwargs["num_threads"] = omp_nthreads

Expand All @@ -103,6 +93,28 @@ def fit(
if model.lower() not in ("b0", "s0", "avg", "average", "mean")
else "b0"
)

# When downsampling these need to be set per-level
bmask_img = None
if dwdata.brainmask is not None:
_, bmask_img = mkstemp(suffix="_bmask.nii.gz")
nb.Nifti1Image(
dwdata.brainmask.astype("uint8"), dwdata.affine, None
).to_filename(bmask_img)
kwargs["mask"] = dwdata.brainmask

if hasattr(dwdata, "bzero") and dwdata.bzero is not None:
kwargs["S0"] = _advanced_clip(dwdata.bzero)

if hasattr(dwdata, "gradients"):
kwargs["gtab"] = dwdata.gradients

if hasattr(dwdata, "frame_time"):
kwargs["timepoints"] = dwdata.frame_time

if hasattr(dwdata, "total_duration"):
kwargs["xlim"] = dwdata.total_duration

index_order = np.arange(len(dwdata))
np.random.shuffle(index_order)

Expand All @@ -118,7 +130,6 @@ def fit(

# Factory creates the appropriate model and pipes arguments
dwmodel = ModelFactory.init(
gtab=dwdata.gradients,
model=model,
**kwargs,
)
Expand All @@ -137,9 +148,10 @@ def fit(
pbar.set_description_str(f"[{grad_str}], {n_jobs} jobs")

if not single_model: # A true LOGO estimator
if hasattr(dwdata, "gradients"):
kwargs["gtab"] = data_train[1]
# Factory creates the appropriate model and pipes arguments
dwmodel = ModelFactory.init(
gtab=data_train[1],
model=model,
n_jobs=n_jobs,
**kwargs,
Expand Down
2 changes: 2 additions & 0 deletions src/eddymotion/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
DKIModel,
DTIModel,
TrivialB0Model,
PETModel,
)

__all__ = (
Expand All @@ -35,4 +36,5 @@
"DKIModel",
"DTIModel",
"TrivialB0Model",
"PETModel",
)
Loading

0 comments on commit 962ff19

Please sign in to comment.