Crop

Crops image to user specified coordinates

plantcv.crop(img, x, y, h, w)

returns image after cropping

  • Parameters:
    • img - RGB, grayscale, or hyperspectral image data
    • x - Starting X coordinate
    • y - Starting Y coordinate
    • h - Height
    • w - Width
  • Context:
    • Crops image

from plantcv import plantcv as pcv

# Set global debug behavior to None (default), "print" (to file), 
# or "plot" (Jupyter Notebooks or X11)

pcv.params.debug = "print"

# Crop image
crop_img = pcv.crop(img=img, x=800, y=400, h=1200, w=900)

Debug Crop Image

Screenshot

Cropped Image

Screenshot

Source Code: Here