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

Defines a DeepBlurFilter effect to process the image. This class cannot be inherited. This filter will blur the image with the specified level.

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

In other onlie documents or software, this might be called BoxBlur or something else. The basic idea is reading surrounded pixels of each pixel and calculate the average value of them. Repeat this operation with the specified intervals (level). Hence, the higher level you specify, the deeper blur effect you get.

IC.PhotoController.Filter.BaseFilter
    IC.PhotoController.Filter.DeepBlurFilter

Blur.cs

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