Pyramid Focus Augmentation: Medical Image Segmentation with Step Wise Focus - Pytorch support dataset
Project description
pyra-pytorch
This is a dataset class suporting Pytorch datasets. This implementation is based on the augmentaiton method discuss in the following paper "Pyramid-Focus-Augmentation: Medical Image Segmentation with Step-Wise Focus" and the original github repository.
PAPER | Original implementaiton in GitHub
@article{thambawita2020pyramid,
title={Pyramid-Focus-Augmentation: Medical Image Segmentation with Step-Wise Focus},
author={Thambawita, Vajira and Hicks, Steven and Halvorsen, P{\aa}l and Riegler, Michael A},
journal={arXiv preprint arXiv:2012.07430},
year={2020}
}
How to use:
Install the package,
pip install pyra-pytorch
Create a dataset with gird sizes which are going to be used as augmentation in the training process. If you want to get only the original mask, then, you have to pass image size as the gird size.
from pyra_pytorch import PYRADataset
dataset = PYRADataset("./image_path", # image folder
"./masks_path", # mask folder - files´s names of this folder should have image names as prefix to find correct image and mask pairs.
img_size = 256, # height and width of image to resize
grid_sizes=[2,4,8,16,32,64,128,256] , # Gird sizes to use as grid augmentation. Note that, the image size after resizing ()
transforms = None
)
'''
./image_path" --> image folder
./masks_path" --> mask folder - files´s names of this folder should have image names as prefix to find correct image and mask pairs.
img_size = 256 --> height and width of image to resize
grid_sizes=[2,4,8,16,32,64,128,256] --> Gird sizes to use as grid augmentation. Note that, the image size after resizing (in this case, it is 256) shoud be divisible by these grid sizes.
transforms = None --> Other type of transformations using in Pytorch.
'''
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyra-pytorch-0.0.1.tar.gz
(4.1 kB
view details)
Built Distribution
File details
Details for the file pyra-pytorch-0.0.1.tar.gz
.
File metadata
- Download URL: pyra-pytorch-0.0.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c28347e7ec97d4587e879f2f815f0b890b2d6226c56421846de147ff69926d5 |
|
MD5 | 4818b430e6b9be224a4ef07a53c4bd4a |
|
BLAKE2b-256 | 7560cefea889b0d7ee98cc7fc39a37b8ad9681813f48db97b4232d28ad04bffe |
File details
Details for the file pyra_pytorch-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pyra_pytorch-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1743ee22585980d2c691217692ef05ef22995390f34ef58cdc91e523ce80f2ea |
|
MD5 | 11542dc52f0ed16b3a025f6c814a3c90 |
|
BLAKE2b-256 | 291327864b1784df2524cce10f9dd6a7648997acb0a8984b1954efd1395a2283 |