Simplifies the process of applying U-net style models to large images.
Project description
Image Apply
A package for improving the simplicity of adapting Segmentation Models to large images.
This package include a class that can be used to apply a segmentation model to large images. The class will split the image into smaller tiles, apply the model to each tile, and then stitch the tiles back together. This allows the model to be applied to images that are too large to fit in memory.
Installation
pip install imageapply
Usage
This package can be used to easily extend a segmentation model to large images. The following example is for a model
that takes a batch of images of size (None, 256, 256, 3) as input and outputs a mask of size (None, 256, 256, 1).
from imageapply import FlexibleModel
model = FlexibleModel(model, input_size=(256, 256, 3), max_batch_size=16)
# Apply the model to a batch of large images of size (20, 1024, 1024, 3)
masks = model(images)
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
Built Distribution
Hashes for imageapply-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6904eafe544be6df96ff6c3317b12c827998372dca1006ed2f96301b9bcd52ae |
|
MD5 | 4305ad68a347152dbdd5351cdacddcd6 |
|
BLAKE2b-256 | 18129fcd59b4f0163635e23413470070646e1e07942cb6e9a8a83f8d3d3976e6 |