Skip to main content

Linear interpolation and gridding for 2D and 3D images in PyTorch

Project description

torch-image-interpolation

License PyPI Python Version CI codecov

2D/3D image interpolation routines in PyTorch.

Why?

This package provides a simple, consistent API for

  • sampling values from 2D/3D images (sample_image_2d()/sample_image_3d())
  • inserting values into 2D/3D images (insert_into_image_2d()/insert_into_image_3d)

Operations are differentiable and interpolating from or into complex valued images is supported.

For sampling torch.nn.functional.grid_sample is used under the hood.

Installation

pip install torch-image-interpolation

Usage

Coordinate System

This library uses an array-like coordinate system where coordinate values span from 0 to dim_size - 1 for each dimension. Fractional coordinates are supported and values are interpolated appropriately.

2D Images

For 2D images with shape (h, w):

Coordinates are ordered as [y, x] where:

  • y is the position in the height dimension (first dimension of shape)
  • x is the position in the width dimension (second dimension of shape)

For example, in a (28, 28) image, valid coordinates range from [0, 0] to [27, 27]

3D Images

For 3D images with shape (d, h, w):

Coordinates are ordered as [z, y, x] where:

  • z is the position in the depth dimension (first dimension of shape)
  • y is the position in the height dimension (second dimension of shape)
  • x is the position in the width dimension (third dimension of shape)

For example, in a (28, 28, 28) volume, valid coordinates range from [0, 0, 0] to [27, 27, 27].

Sample from image

import torch
import numpy as np
from torch_image_interpolation import sample_image_2d

# example (h, w) image
image = torch.rand((28, 28))

# make an arbitrary stack (..., 2) of 2d coords
coords = torch.tensor(np.random.uniform(low=0, high=27, size=(6, 7, 8, 2))).float()

# sampling returns a (6, 7, 8) array of samples
# using bilinear interpolation (the default)
sample_bilinear = sample_image_2d(image=image, coordinates=coords, interpolation='bilinear')

# or a different interpolation mode...
samples_nearest = sample_image_2d(image=image, coordinates=coords, interpolation='nearest')
samples_bicubic = sample_image_2d(image=image, coordinates=coords, interpolation='bicubic')

The API is identical for 3D (d, h, w) images but takes (..., 3) arrays of coordinates.

Insert into image

import torch
import numpy as np
from torch_image_interpolation import insert_into_image_2d

# example (h, w) image
image = torch.zeros((28, 28))

# make an arbitrary stack (..., 2) of 2d coords
coords = torch.tensor(np.random.uniform(low=0, high=27, size=(3, 4, 2)))

# generate random values to place at coords
values = torch.rand(size=(3, 4))

# insert values into the image with bilinear interpolation (the default)
image_bilinear, weights_bilinear = insert_into_image_2d(
    values, image=image, coordinates=coords, interpolation='bilinear'
)

# you can specify a different interpolation mode
image_nearest, weights_nearest = insert_into_image_2d(
    values, image=image, coordinates=coords, interpolation='nearest'
)

The API is identical for 3D (d, h, w) images but takes (..., 3) arrays of coordinates.

Similar packages

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

torch_image_interpolation-0.0.6.tar.gz (51.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

torch_image_interpolation-0.0.6-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file torch_image_interpolation-0.0.6.tar.gz.

File metadata

File hashes

Hashes for torch_image_interpolation-0.0.6.tar.gz
Algorithm Hash digest
SHA256 1009d51aad4dc4ee8f61008a4ca5ea9ebbdf4e452c9d883a68f7497712309c91
MD5 eef824f466928b2f1030926008ccf0c8
BLAKE2b-256 1fab8d5ecfae14d9c10fa744ca0d678c010a29e492134649a82d9f89caa682c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for torch_image_interpolation-0.0.6.tar.gz:

Publisher: ci.yml on teamtomo/torch-image-interpolation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file torch_image_interpolation-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for torch_image_interpolation-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 b1677f6caedd60b55371980c81649bd47e479c7049d8efd386f886bf588775d1
MD5 c8e8271cc8b0387923419b43fb5c9e67
BLAKE2b-256 e622441a82493ea77551c621d5428e62bba3d3cec70671491d7a2edc26a608ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for torch_image_interpolation-0.0.6-py3-none-any.whl:

Publisher: ci.yml on teamtomo/torch-image-interpolation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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