Skip to main content

Prostate Net loading functions

Project description

Prostate Net Loader

Prostate Net Loader contains functions to assist the Data Mining and loading process of Patients originated from the ProCAncer-AI Horizon's 2020 project.
The package is under construction for the time being therefore any suggestion would be appreciated.

Installation

Install the project via pip or pull the repo

pip install PROSTATENETLOADER == 0.0.1

Usage/Examples Series Parser tool

Detailed explanation of the series parser tool is presented at the ParquetParser_Examples.ipynb

Usage/Examples PROSTATENETLOADER Module

Examples could be found in Module_Examples.ipynb regarding the package. An example for a single patient is presented below

Single Patient

a) Import Libraries

import pandas as pd
import SimpleITK as sitk
import ProstateNetLoaders

b) Set the patient folder path and the csv extracted by the sequence selector tool

pth = "PCa-..."
metadata= pd.read_csv("results.csv", 
                names=["patient_id", "study_uid", 
                "series_uid", "series_type", "series_type_heuristics"])

c) Execute loaders and pick orientation ("AX","COR", "SAG") and sequence ("T2","ADC","DWI") and whether to be AI sequence parser (Heuristics = False) or Heuristics = True

a = ProstateNetLoaders.ExecuteLoader.Execute(pth, metadata,  Heuristics = True) 
a.LoadArrays(orientation="AX", seq="T2")

d) Get dictionaries where keys are the series names, values are the Image numpy arrays

pat,ann = a.GetItems() 

Batch Loading

The structure of the folders should be like this

pth_batch = "Patients"
patients = {}
Sequence = "T2" # pick you sequence between "T2", "ADC", "DWI"
T2_absence = [] # Store the names of the failed patients
for patient in os.listdir(pth_batch):
    pat = os.path.join(pth_batch,patient)
    a = ProstateNetLoaders.ExecuteLoader.Execute(pat, metadata)
    try:
        a.LoadArrays(orientation="AX", seq=Sequence)
        pat,ann = a.GetItems()
        patients.update({patient:{Sequence:np.array(list(pat.values())[0]),"Lesion": np.array(list(ann.values())[0])}})
    except: 
        T2_absence.append(patient)
        continue

Authors

Badges

Add badges from somewhere like: shields.io

MIT License Python

License

MIT

Logo

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

ProstateNetLoaders-0.0.1.tar.gz (25.6 kB view details)

Uploaded Source

File details

Details for the file ProstateNetLoaders-0.0.1.tar.gz.

File metadata

  • Download URL: ProstateNetLoaders-0.0.1.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.8 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.1.0 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.13

File hashes

Hashes for ProstateNetLoaders-0.0.1.tar.gz
Algorithm Hash digest
SHA256 2fa323fec1b624736d297ac9a75104bf532b417ba45fe05e50c3adfb0fe3f853
MD5 dd3c2033e0a9bd68e1d34ff1295c63f6
BLAKE2b-256 4ecc7398ecf459882ee111ff5bdf5ef3118ccc12737b0b2f14df0a25726ef830

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page