Skip to content

Commit

Permalink
refactor: Removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol-G committed Aug 19, 2024
1 parent 8335e61 commit 7020388
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion medvol/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.7"
__version__ = "0.0.8"

from medvol.medvol import MedVol
12 changes: 10 additions & 2 deletions medvol/medvol.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
import SimpleITK as sitk
from dataclasses import dataclass, field
from typing import Dict, Optional, Union, List, Tuple
import numpy as np


# TODO:
# - Enable user to set affine
# - Reflect changes in affine in all other parameters
# - Add affine_3d function?
# - Create docstrings and docs
# - Write tests
# - Rename into MedImg
# - Fix is_seg
# - Fix napari-nifti loading of 2D and 4D images


class MedVol:
def __init__(self,
array: Union[np.ndarray, str],
Expand Down

0 comments on commit 7020388

Please sign in to comment.