Description Usage Arguments Value Functions See Also Examples
This transform accentuates circular shapes
1 2 3 | circular_hough_transform(img, width, sobel_width, tolerance = 11)
compile_circular_hough(width, sobel_width, dim_img, tolerance = 11)
|
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 |
image
compile_circular_hough
: pre-calculates parameters and returns a function
Other filters:
compile_hough_circle_draw()
,
compile_sobel_filter()
,
compile_variance_filter()
,
dog_filter()
1 2 3 | x = readImage(system.file('images', 'shapes.png', package='EBImage'))
hough <- circular_hough_transform(x, 51, 3, 5)
# display(normalize(hough))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.