Skip to main content

Hue Range Dominance Index (HRDI) algorithm

Project description

huedominance

Provides Hue Range Dominance Index (HRDI) algorithm — a new vegetation index proposed for PhenoCam plant phenology image analysis.

For comparison with Green Chromatic Coordinate (GCC), a gcc function is available, too.

To install:

pip3 install huedominance

To use from command line (example):

python3 -m huedominance 100 170 green_leaves.jpg

To use in your Python code:

from huedominance.hrdi import hrdi
from huedominance.gcc import gcc
from PIL import Image

image = Image.open('/path/to/your/image')

green_leaves_hrdi, hrdi_image = hrdi(image, 100, 170, make_illustration = True)
green_leaves_gcc, gcc_image = gcc(image, make_illustration = True)

hrdi_image.save('/path/to/hrdi/illustrative/signal/image', 'JPEG')
gcc_image.save('/path/to/gcc/illustrative/signal/image', 'JPEG')

red_leaves_hrdi, _ = hrdi(image, -30, 10)

Please refer to Python help on function hrdi for details about the algorithm.

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

huedominance-0.1.2.tar.gz (14.6 kB view hashes)

Uploaded Source

Built Distribution

huedominance-0.1.2-py3-none-any.whl (16.0 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