{ } Raw JSON

bundles / skimage latest / skimage / morphology / _flood_fill_cy / _flood_fill_tolerance

fused_cython_function

skimage.morphology._flood_fill_cy:_flood_fill_tolerance

Signature

def   _flood_fill_tolerance ( image flags neighbor_offsets start_index seed_value low_tol high_tol )

Summary

Find connected areas to fill, within a tolerance.

Parameters

image : ndarray, one-dimensional

The raveled view of a n-dimensional array.

flags : ndarray, one-dimensional

An array of flags that is used to store the state of each pixel during evaluation.

neighbor_offsets : ndarray

A one-dimensional array that contains the offsets to find the connected neighbors for any index in image.

start_index : int

Start position for the flood-fill.

seed_value

Value of image[start_index].

low_tol

Lower limit for tolerance comparison.

high_tol

Upper limit for tolerance comparison.

Aliases

  • skimage.morphology._flood_fill._flood_fill_tolerance