ClassesClasses | | Operators

corner_responsecorner_responseCornerResponseCornerResponse (Operator)

Name

corner_responsecorner_responseCornerResponseCornerResponse — Searching corners in images.

Signature

corner_response(Image : ImageCorner : Size, Weight : )

Herror corner_response(const Hobject Image, Hobject* ImageCorner, const Hlong Size, double Weight)

Herror T_corner_response(const Hobject Image, Hobject* ImageCorner, const Htuple Size, const Htuple Weight)

void CornerResponse(const HObject& Image, HObject* ImageCorner, const HTuple& Size, const HTuple& Weight)

HImage HImage::CornerResponse(Hlong Size, double Weight) const

static void HOperatorSet.CornerResponse(HObject image, out HObject imageCorner, HTuple size, HTuple weight)

HImage HImage.CornerResponse(int size, double weight)

Description

The operator corner_responsecorner_responseCornerResponseCornerResponseCornerResponse extracts gray value corners in an image. The formula for the calculation of the response is:

where I is the input image and R the output image of the filter. The operator gauss_imagegauss_imageGaussImageGaussImageGaussImage is used for smoothing (W), the operator sobel_ampsobel_ampSobelAmpSobelAmpSobelAmp is used for calculating the derivative .

The corner response function is invariant with regard to rotation. In order to achieve a suitable dependency of the function R(x,y) on the local gradient, the parameter WeightWeightWeightWeightweight must be set to 0.04. With this, only gray value corners will return positive values for R(x,y), while straight edges will receive negative values. The output image type is identical to the input image type. Therefore, the negative output values are set to 0 if byte images are used as input images. If this is not desired, the input image should be converted into a real or int2 image with convert_image_typeconvert_image_typeConvertImageTypeConvertImageTypeConvertImageType.

Attention

Note that filter operators may return unexpected results if an image with a reduced domain is used as input. Please refer to the chapter Filters.

Execution Information

Parameters

ImageImageImageImageimage (input_object)  (multichannel-)image(-array) objectHImageHImageHobject (byte / uint2 / int2 / real)

Input image.

ImageCornerImageCornerImageCornerImageCornerimageCorner (output_object)  multichannel-image(-array) objectHImageHImageHobject * (byte / uint2 / int2 / real)

Result of the filtering.

Number of elements: ImageCorner == Image

SizeSizeSizeSizesize (input_control)  integer HTupleHTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Desired filtersize of the graymask.

Default value: 3

Suggested values: 3, 5, 7, 9, 11

WeightWeightWeightWeightweight (input_control)  real HTupleHTupleHtuple (real) (double) (double) (double)

Weighting.

Default value: 0.04

Typical range of values: 0.0 ≤ Weight Weight Weight Weight weight ≤ 0.3

Minimum increment: 0.001

Recommended increment: 0.01

Example (C)

read_image(&Fabrik,"fabrik");
corner_response(Fabrik,&CornerResponse,3,0.04);
local_max(CornerResponse,&LocalMax);
disp_image(Fabrik,WindowHandle);
set_color(WindowHandle,"red");
disp_region(LocalMax,WindowHandle);

Possible Successors

local_maxlocal_maxLocalMaxLocalMaxLocalMax, thresholdthresholdThresholdThresholdThreshold

See also

gauss_filtergauss_filterGaussFilterGaussFilterGaussFilter, sobel_ampsobel_ampSobelAmpSobelAmpSobelAmp, convert_image_typeconvert_image_typeConvertImageTypeConvertImageTypeConvertImageType

References

C.G. Harris, M.J. Stephens, “A combined corner and edge detector”'; Proc. of the 4th Alvey Vision Conference; August 1988; pp. 147-152.
H. Breit, “Bestimmung der Kameraeigenbewegung und Gewinnung von Tiefendaten aus monokularen Bildfolgen”; Diplomarbeit am Lehrstuhl für Nachrichtentechnik der TU München; 30. September 1990.

Module

Foundation


ClassesClasses | | Operators