Namespace > IC.PhotoController.Filter Namespace > Classes > EdgeDetectRobertsFilter Class
PhotoController 2.2
ContentsIndexHome
PreviousUpNext
EdgeDetectRobertsFilter Class

Defines a EdgeDetectRobertsFilter effect to process the image. This class cannot be inherited.

C++
public: class EdgeDetectRobertsFilter : public BaseFilter;
C#
public sealed class EdgeDetectRobertsFilter : BaseFilter;
Visual Basic
Public sealed Class EdgeDetectRobertsFilter
Inherits BaseFilter

Edge detecting an image significantly reduces the amount of data and filters out useless information, while preserving the important structural properties in an image. There are many ways to perform edge detection. However, the majority of different methods may be grouped into two categories, gradient and Laplacian. The gradient method detects the edges by looking for the maximum and minimum in the first derivative of the image. The Laplacian method searches for zero crossings in the second derivative of the image to find edges. An edge has the one-dimensional shape of a ramp and calculating the derivative of the image can highlight its location.

IC.PhotoController.Filter.BaseFilter
    IC.PhotoController.Filter.EdgeDetectRobertsFilter

EdgeDetect.cs

Send comments about this topic.
Copyright (c) 2008-2009 @ ImageComponent.NET. All rights reserved.