> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ImageDocument オブジェクトの ApplySigmaFilter メソッド

> ABBYY FineReader Engine API の ImageDocument オブジェクトの ApplySigmaFilter メソッド — 画像にノイズ低減フィルターを適用します。主に写真に有効です。

このメソッドは、画像にノイズ低減フィルターを適用します。主に写真画像に効果的です。

一般的な入力画像を使って試しながら、最適なパラメーター値を見つけることをお勧めします。まずは Radius を 15、Threshold を 3.0 に設定してお試しください。

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

```cpp theme={null}
HRESULT ApplySigmaFilter(
  int    Radius,
  double Threshold
);
```

### C\#

```csharp theme={null}
void ApplySigmaFilter(
  int    Radius,
  double Threshold
);
```

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Sub ApplySigmaFilter( _
  Radius As Integer, _
  Threshold As Double _
)
```

<div id="parameters">
  ## パラメーター
</div>

**Radius**

\[in] 平滑化半径。15 ～ 30 の範囲で指定してください。

**Threshold**

\[in] ノイズ強度のしきい値。3 ～ 5 の範囲で指定してください。

<div id="return-values">
  ## 戻り値
</div>

このメソッドに固有の戻り値はありません。[ABBYY FineReader Engine 関数の標準的な戻り値](/ja/fine-reader/engine/api-reference/return-codes)を返します。

<div id="see-also">
  ## 関連項目
</div>

[ImageDocument](/ja/fine-reader/engine/api-reference/image-related-objects/imagedocument)
