SubpixelEdgeMethods

giant.image_processing:

class giant.image_processing.SubpixelEdgeMethods(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]

This enumeration provides the valid options for subpixel edge detection methods.

You should be sure to use one of these values when setting to the subpixel_method attribute of the ImageProcessing class.

PIXEL = 'PIXEL'

Pixel level edges, no refining

PAE = 'PAE'

Use Partial Area Effect to compute subpixel edge locations.

See refine_edges_pae() for details.

ZERNIKE_RAMP = 'ZERNIKE_RAMP'

Use Zernike Ramp to compute subpixel edge locations

See refine_edges_zernike_ramp() for details.