Skip to main content

Mahotas: Python Image Processing Library

Project description

Image Processing Library for Python.

It includes a couple of algorithms implemented in C++ for speed while operating in numpy arrays.

Notable algorithms:
  • watershed.

  • convex points calculations.

  • hit & miss. thinning.

  • Zernike & Haralick, LBP, and TAS features.

  • freeimage based numpy image loading (requires freeimage libraries to be installed).

  • Speeded-Up Robust Features (SURF), a form of local features.

  • thresholding.

  • convolution.

  • Sobel edge detection.

Examples

This is a simple example of loading a file (called test.jpeg) and calling watershed using above threshold regions as a seed (we use Otsu to define threshold).

import numpy as np
from scipy import ndimage
import mahotas
import pylab

img = mahotas.imread('test.jpeg')
T_otsu = mahotas.thresholding.otsu(img)
seeds,_ = ndimage.label(img > T_otsu)
labeled = mahotas.cwatershed(img.max() - img, seeds)

pylab.imshow(labeled)

Recent Changes

For version 0.6.5: - Add max_points & descriptor_only arguments to mahotas.surf - Fix haralick for 3-D images (bug report by Rita Simões) - Better error messages - Fix hit&miss for non-boolean inputs - Add label() function

For version 0.6.4:

  • Fix bug in cwatershed() when using return_lines=1

  • Fix bug in cwatershed() when using equivalent types for image and markers

  • Move tests to mahotas.tests and include them in distribution

  • Include ChangeLog in distribution

  • Fix compilation on the Mac OS

  • Fix compilation warnings on gcc

For version 0.6.3:

  • Improve mahotas.stretch() function

  • Fix corner case in surf (when determinant was zero)

  • threshold argument in mahotas.surf

  • imreadfromblob() & imsavetoblob() functions

  • max_points argument for mahotas.surf.interest_points()

  • Add mahotas.labeled.borders function

For version 0.6.2:

Bugfix release:

  • Fix memory leak in _surf

  • More robust searching for freeimage

  • More functions in mahotas.surf() to retrieve intermediate results

  • Improve compilation on Windows (patches by Christoph Gohlke)

For version 0.6.1:

  • Release the GIL in morphological functions

  • Convolution

  • just_filter option in edge.sobel()

  • mahotas.labeled functions

  • SURF local features

For version 0.6:

  • Improve Local Binary patterns (faster and better interface)

  • Much faster erode() (10x faster)

  • Faster dilate() (2x faster)

  • TAS for 3D images

  • Haralick for 3D images

Support

Website: http://luispedro.org/software/mahotas

API Docs: http://packages.python.org/mahotas/

Mailing List: Use the pythonvision mailing list for questions, bug submissions, etc.

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

mahotas-0.6.5.tar.gz (85.1 kB view details)

Uploaded Source

File details

Details for the file mahotas-0.6.5.tar.gz.

File metadata

  • Download URL: mahotas-0.6.5.tar.gz
  • Upload date:
  • Size: 85.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mahotas-0.6.5.tar.gz
Algorithm Hash digest
SHA256 1e33b3fdc5dcb40e4d853c60d262fcc398f9179bf49c857dc1a4014e5f309054
MD5 ed9f88fb68c3879be44be142d5b860cf
BLAKE2b-256 93e1bf5c931da5035d4f9c4f6332a1934c47a4dcbc8c04efffc1728350d28cd2

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