二つの固定しきい値を用いて2値化

Namespace: fvalgcli
Assembly: fvalgcli_fga (in fvalgcli_fga.dll) Version: 3.1.0.0 (3.1.0.3)

Syntax

C#
public static int fnFGA_band_threshold(
	FHANDLE hsrc,
	FHANDLE hdst,
	double tlow,
	double thigh
)
Visual Basic
Public Shared Function fnFGA_band_threshold ( 
	hsrc As FHANDLE,
	hdst As FHANDLE,
	tlow As Double,
	thigh As Double
) As Integer

Parameters

hsrc
Type: fvalgcli..::..FHANDLE
入力画像ハンドル( FGA 画像オブジェクト / type : uc8, s16, us16, double )
hdst
Type: fvalgcli..::..FHANDLE
出力画像ハンドル( FGA 画像オブジェクト / type : bin )
tlow
Type: System..::..Double
2値化閾値の下限
thigh
Type: System..::..Double
2値化閾値の上限

Return Value

Type: Int32
以下のエラーコードを返します。

エラーコード:
f_err内容
F_ERR_NONE正常終了
F_ERR_INVALID_IMAGE画像オブジェクトの異常
F_ERR_INVALID_PARAMパラメータ異常
F_ERR_NO_LICENCEライセンスエラー、または未初期化エラー

Examples

C# Copy imageCopy
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using fvalgcli;

namespace TC
{
    public partial class FIE
    {
        [FvPluginExecute]
        public void fnFGA_band_threshold()
        {
            int status = (int)f_err.F_ERR_NONE;

            FHANDLE hfie_src = FHANDLE.Zero;    // 入力画像.
            FHANDLE hfie_dst = FHANDLE.Zero;    // 出力画像.
            FHANDLE hfga_src = FHANDLE.Zero;    // 入力画像.(FGA用)
            FHANDLE hfga_dst = FHANDLE.Zero;    // 出力画像.(FGA用)
            double tlow = 100;
            double thigh = 200;

            try
            {
                // 入力画像ファイルのロード
                status = api.fnFIE_load_img_file(Defs.TestImageDir + "/testdata/gray_04.bmp", ref hfie_src, f_color_img_type.F_COLOR_IMG_TYPE_UC8);
                if (status != (int)f_err.F_ERR_NONE)
                    throw new FvException(status);

                // 入力画像の情報取得.
                int width = api.fnFIE_img_get_width(hfie_src);
                int height = api.fnFIE_img_get_height(hfie_src);
                int channels = api.fnFIE_img_get_channels(hfie_src);
                int type = api.fnFIE_img_get_type(hfie_src);

                // 入力画像の生成.(FGA用)
                hfga_src = fga.fnFGA_img_root_alloc(type, channels, width, height);
                if (hfga_src == IntPtr.Zero)
                    throw new FvException(f_err.F_ERR_NOMEMORY);

                // FIE 画像オブジェクトから FGA 画像オブジェクトへコピー.
                status = fga.fnFGA_img_copy(hfie_src, hfga_src);
                if (status != (int)f_err.F_ERR_NONE)
                    throw new FvException(status);

                // 出力画像の生成.(FGA用)
                hfga_dst = fga.fnFGA_img_root_alloc(f_imgtype.F_IMG_BIN, channels, width, height);
                if (hfga_dst == IntPtr.Zero)
                    throw new FvException(f_err.F_ERR_NOMEMORY);

                // 処理の実行.
                status = fga.fnFGA_band_threshold(hfga_src, hfga_dst, tlow, thigh);
                if (status != (int)f_err.F_ERR_NONE)
                    throw new FvException(status, "エラーが発生しました。");

                // 出力画像の生成.
                hfie_dst = api.fnFIE_img_root_alloc(f_imgtype.F_IMG_BIN, channels, width, height);
                if (hfie_dst == IntPtr.Zero)
                    throw new FvException(f_err.F_ERR_NOMEMORY);

                // FGA 画像オブジェクトから FIE 画像オブジェクトへコピー.
                status = fga.fnFGA_img_copy(hfga_dst, hfie_dst);
                if (status != (int)f_err.F_ERR_NONE)
                    throw new FvException(status);

                // 出力画像の保存.
                status = api.fnFIE_save_png(Defs.ResultDir + "/fnFGA_band_threshold.png", hfie_dst, -1);
                if (status != (int)f_err.F_ERR_NONE)
                    throw new FvException(status);
            }
            finally
            {
                // オブジェクトの開放.
                hfga_src.Dispose();
                hfga_dst.Dispose();
                hfie_src.Dispose();
                hfie_dst.Dispose();
            }
        }
    }
}

See Also