circular_hough_transform: Calculates a circular hough transform

Description Usage Arguments Value Functions See Also Examples

View source: R/filters.R

Description

This transform accentuates circular shapes

Usage

1
2
3
circular_hough_transform(img, width, sobel_width, tolerance = 11)

compile_circular_hough(width, sobel_width, dim_img, tolerance = 11)

Arguments

img

image to transform

width

expected width of the circles

sobel_width

width of the sobel filter that will be used to detect the edges

Value

image

Functions

See Also

Other filters: compile_hough_circle_draw(), compile_sobel_filter(), compile_variance_filter(), dog_filter()

Examples

1
2
3
x = readImage(system.file('images', 'shapes.png', package='EBImage'))
hough <- circular_hough_transform(x, 51, 3, 5)
# display(normalize(hough))

jspaezp/clasifierrr documentation built on March 2, 2020, 11:20 a.m.