Skip to main content

A library that splits the image into overlapping or non-overlapping patches with the optimal step in order to minimize pixels loss. It can then merge them back together.

Project description

image2patch

image2patch splits the image in different patches with automatic detection of the best step in order to minimize pixels loss. The overlap between patches depends on the patch size. Alternatively, it is possible to choose the step size.
The reconstruction of the original image is possible using patch2image which can merge the patches taking into account the overlap percentage among patches. Hence, the original image is perfectly restored. If there is a minimum pixels loss during patching procedure, resize to its original dimensions is possible.

Example

pic

Installation

pip install image2patch
from image2patch import image2patch
from image2patch import patch2image

How to use it

image2patch(image, patch_size, step=None, verbose=False)

In particular:

  • image : 2D input image
  • patch_size : dimension of the window
  • step : the distance from one step to another, if =None it will be automatically detected in order to avoid pixels loss. If set = patch_size it will provide patches without overlapping but with pixels loss depending on the size of the input image.
  • verbose : if =True it provides details.

patch2image(patched_image, original_dims, step, resize_flag = True)

In particular:

  • patched_image : 2D input patches from image2patch
  • original_dims : dimension of the original image
  • step : step obtained from image2patch
  • resize_flag : allows to resize the image to its original dimension in case of pixels loss.

Licence

MIT

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

image2patch-0.1.1.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

image2patch-0.1.1-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

Supported by

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