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

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

C++
public: class EdgeDetectPrewittFilter : public BaseFilter;
C#
public sealed class EdgeDetectPrewittFilter : BaseFilter;
Visual Basic
Public sealed Class EdgeDetectPrewittFilter
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.EdgeDetectPrewittFilter

EdgeDetect.cs

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