Visualize all potential colorspaces

This is a plotting method used to examine all potential colorspaces from available PlantCV functions.

plantcv.visualize.colorspaces(rgb_img)

returns plotting_img

  • Parameters:

    • rgb_img - RGB image data, the original image for analysis.
  • Example use:

    • Below

Original image

Screenshot


from plantcv import plantcv as pcv

# Examine all colorspaces at one glance
colorspace_img = pcv.visualize.colorspaces(rgb_img=img)

Ouput

Screenshot

Source Code: Here