Defines a DeepBlurFilter effect to process the image. This class cannot be inherited. This filter will blur the image with the specified level.
public: class DeepBlurFilter : public BaseFilter;
public sealed class DeepBlurFilter : BaseFilter;
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.
|