Skip to main content

A package of image analysis algorithms suited for plants

Project description

LettuceSee

A package with high level functions for analyzing images of plants.

Example case

The following example showcases a miniature pipeline using lettuceSee and scikit-image functions.

An image of lettuce affected with necrosis is loaded in as a numpy array. After removing the alpha layer, applying the shw_segmentation function from the segment module removes the background of the image.

from lettuceSee import segment
import skimage
import matplotlib.pyplot as plt

image = skimage.io.imread(
    "Image/path/here.png"
)
image = skimage.util.img_as_ubyte(skimage.color.rgba2rgb(image))
bg_mask = segment.shw_segmentation(image)

The initial segmentation looks decent, however, there is still some background noise, as well as other plants intruding from the side. The function canny_central_ob is used to remove objects not attached to the central object, as well as connected objects with very different coloration.

bg_mask = segment.canny_central_ob(image=image, mask=bg_mask, sigma=2.5)

After finishing the background segmentation, the function barb_hue is used to segment green from brown tissue through the method described in Barbedo, 2016.

necrosis_mask = segment.barb_hue(image=image, bg_mask=bg_mask, div=3)

Installation

The package can be installed from the pypi test distribution through:

pip install lettuceSee

Anaconda

There is no dedicated lettuceSee installation for anaconda, if you do want to install the package within anaconda the following method is recommended: First create a new environment following the anaconda documentation. Activate your fresh environment and install pip:

conda install pip

Following this run the usual command to install lettuceSee. Note that mixing conda and pip can lead to unexpected errors, as both are package managers. As such it is recommended to do further installations in this environment trough pip.

Recommended extras

For visualization of the images, matplotlib is recommended. LettuceSee handles images as numpy arrays, which can be directly visualized trough matplotlib.pyplot. Matplotlib is not included in the installation of lettuceSee, but can be installed trough:

pip install matplotlib

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

lettucesee-0.1.1.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

lettuceSee-0.1.1-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file lettucesee-0.1.1.tar.gz.

File metadata

  • Download URL: lettucesee-0.1.1.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lettucesee-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8921feb5fd03b4767a78a5a3a9e28080a611fe6d83111c9d8e97bd8206c95742
MD5 ab354605a89f8fd435455b2c70b0293b
BLAKE2b-256 942c63332ca840dd463243766b2ec5750499f28d3a5c38fcb3be93da9b1dc9a5

See more details on using hashes here.

File details

Details for the file lettuceSee-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: lettuceSee-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for lettuceSee-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 79dab13dd400786263c2bac3a2666dabd997c1989d82ccd2befbadf4a9db6fed
MD5 31b931dc9dfd23beedfa56adafb9a3d5
BLAKE2b-256 ea4cc9b339667e62b20c7a80e0d0aab58be3e114ebfb81bef81de85a5845f5b4

See more details on using hashes here.

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