Create a circular Region of Interest (ROI)

plantcv.roi.circle(x, y, r, img)

returns roi_contour, roi_hierarchy

Reference Image

Screenshot

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"

roi_contour, roi_hierarchy = pcv.roi.circle(x=200, y=225, r=75, img=rgb_img)

Screenshot