Table of contents

Enumeration FilterType

FilterType categorizes the type of pre-build filters to filter images.

  • JavaScript
enum EnumFilterType{
   /**High-pass filter: Enhances edges and fine details by attenuating low-frequency components.*/
   FT_HIGH_PASS = 0,
   /**Sharpen filter: Increases contrast along edges to make the image appear more defined.*/
   FT_SHARPEN = 1,
   /**Smooth (blur) filter: Reduces noise and detail by averaging pixel values, creating a softening effect.*/
   FT_SMOOTH = 2
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: