Skip to main content

Basic image analysis tools (cropping, contour properties, etc.)

Project description

About

Basic image analysis tools, with the following functions:

  • imcrop(): image cropping, with interactive options,
  • contour_properties(): calculate centroid, area, and perimeter of a contour,
  • closest_contour(): closest contour to a position,
  • contour_coords(): transform contour from scikit-image or opencv into usable x, y data,

The imgbasics.transform module also contains functions mimicking those found in Scikit Image's transform module, but that are based on OpenCV for improved speed. For now it only contains:

  • transform.rotate(): rotate image

Note: the package also defines a ContourError class as a custom exception for errors in contour calculations.

Install

pip install imgbasics

Quick start

Below is some information to use available functions. Please also consult docstrings and the Jupyter notebooks ExamplesBasics.ipynb for more details and examples.

Image cropping (imcrop)

Image cropping function; the interactive mode allows the user to define the region of interest on the image interactively, either using clicks or a draggable rectangle.

The image img is assumed to be already loaded in memory as a numpy array (or equivalent, i.e. that supports slicing and defines shape and ndim attributes)

Non-interactive mode

img_crop = imgbasics.imcrop(img, cropzone)

Crops the image img according to a pre-defined crop rectangle cropzone = xmin, ymin, width, height. Contrary to the Matlab imcrop function with the same name, the cropped image is really of the width and height requested in terms of number of pixels, not w+1 and h+1 as in Matlab.

Interactive mode

img_crop, cropzone = imgbasics.imcrop(img)

Cropping rectangle is drawn on the image (img) by either:

  • defining two corners of the rectangle by clicking (default).
  • using a draggable rectangle for selection and pressing "enter" (draggable=True option)

The returned cropzone corresponds to xmin, ymin, width, height.

Note: when selecting, the pixels taken into account are those which have their centers closest to the click, not their edges closest to the click. For example, to crop to a single pixel, one needs to click two times within this pixel (possibly at the same location). For images with few pixels, this results in a visible offset between the dotted lines plotted after the clicks (running through the centers of the pixels clicked) and the final rectangle, which runs along the edges of all pixels selected.

Other arguments

Other arguments are available, e.g. for appearance, visibility, axes, etc. of the cropping tools. See docstrings for details.

Contour properties (contour_properties)

Returns centroid position, perimeter and area of a contour as a dictionary with keys 'centroid' (tuple with x and y position), 'perimeter' (positive float), 'area' (signed float). The sign convention for the area A differs depending on what type of plot is used (because plt.imshow() and plt.plot() do not use the same coordinate conventions):

direction imshow image (plt.imshow()) regular plot (plt.plot())
clockwise A < 0 A > 0
anti-clockwise A > 0 A < 0

(see ExamplesBasics.ipynb for a discussion of the direction of the contours returned by both scikit-image and opencv in different situations).

Example (Hexagon which rotates anti-clockwise in regular coordinates and clockwise on an imshow plot):

import numpy as np
from imgbasics import contour_properties

l = 1 / np.sqrt(3)
xp = np.array([1, 1, 0, -1, -1, 0])/2
yp = np.array([-l, l, 2*l, l, -l, -2*l])/2

data = contour_properties(xp, yp)

should return

data['centroid'] ~ (0, 0)
data['perimeter'] = 6 / sqrt(3) ~ 3.4641,
data['area'] = -sqrt(3)/2 ~ -0.8660

Closest contour (closest_contour)

Finds the closest contour (within a list of contours obtained by scikit-image or opencv) to a certain position (tuple (x, y)). Example with the example.png image provided in the package (should select the lowest, bright spot)

from skimage import io, measure
from imgbasics import closest_contour

img = io.imread('example.png')
contours = measure.find_contours(img, 170)

c = closest_contour(contours, (221, 281), edge=True, source='scikit')
  • If edge = True, returns the contour with the edge closest to the position
  • If edge = False (default), returns the contour with the average position closest to position.
  • source is the origin of the contours ('scikit' or 'opencv')

Note: raises a ContourError if no contours in image (contours empty).

Contour coordinates (contour_coords)

Following the analysis in the section above (contour c), the contour_coords() function allow to format the contour into directly usable x, y coordinates for plotting directly on the imshow() image. For example, following the code above:

import matplotlib.pyplot as plt
from imgbasics import contour_coords

x, y = contour_coords(c, source='scikit')

fig, ax = plt.subplots()
ax.imshow(img, cmap='gray')
ax.plot(x, y, -r)

Image transformation module (imgbasics.transform)

This module mimicks Scikit Image's transform module but with calculations based on OpenCV for order-of-magnitude improvement (typically more than 10-fold) in speed. Right now it only contains the rotate() function.

from imgbasics.transform import rotate
from skimage import io

img = io.imread('example.png')
img_rot = rotate(img, angle=-23, resize=True, order=3)  # bicubic interpolation

Interactive cropping demo

With clicks (default):

With a draggable rectangle:

Dependencies

  • python >= 3.6
  • matplotlib
  • numpy
  • importlib-metadata
  • drapo >= 1.2.0
  • [optional] openCV (cv2), only if using the imgbasics.transform module.

Author

Olivier Vincent

(ovinc.py@gmail.com)

License

BSD 3-clause (see LICENSE file)

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

imgbasics-0.4.2.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

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

imgbasics-0.4.2-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file imgbasics-0.4.2.tar.gz.

File metadata

  • Download URL: imgbasics-0.4.2.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.16

File hashes

Hashes for imgbasics-0.4.2.tar.gz
Algorithm Hash digest
SHA256 c3ac1e413e9236c57be7078ad3b2137cc693d83f8569227bea853a9a944fd454
MD5 0baffb7832266124a4df1d4644d22460
BLAKE2b-256 969f4cb1faffca7e4257850fd3af611a64ab432c4f1512565ce8cf1c6fa03e34

See more details on using hashes here.

File details

Details for the file imgbasics-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: imgbasics-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.16

File hashes

Hashes for imgbasics-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1e3d6ab81562eb3a1ee50a0e90864f65584b8b2ddbb8159db8f29a53011f29b9
MD5 57c5dd93ea447eebc73dd05e07636df8
BLAKE2b-256 81fe059a46f36a3b931d9d9a729ce39d84a7eb45dc24123c0548c35276aa00a6

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