sobel.v {rimage}R Documentation

Sobel filter to extract vertical edges

Description

This function calculates an image which sobel filter is applied. It extracts vertical edges only. It is faster than sobel.v extremely because utilization of a C routine.

Usage

sobel.v(img)

Arguments

img a matrix representing target image

Value

a matrix representing the image after vertical sobel filter is applied

See Also

sobel.h,sobel

Examples

  data(logo)
  plot(normalize(sobel.v(logo)))

[Package rimage version 0.5-7 Index]