Sobel Filter

This is a filtering method used to identify and highlight coarse changes in pixel intensity based on the 1st derivative.

sobel_filter(img, dx,dy,k, device, debug=None)

returns device, filtered image

Original grayscale image

Screenshot

from plantcv import plantcv as pcv

# Apply to a grayscale image
# Filtered image will highlight areas of coarse pixel intensity change based on 1st derivative
device, lp_img = pcv.sobel_filter(img, 1, 0, 1, device, debug="print")
device, lp_img = pcv.sobel_filter(img, 0, 1, 1, device, debug="print")

Sobel filtered (x-axis)

Screenshot

Sobel filtered (y-axis)

Screenshot