孤立点除去

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

Syntax

C#
public static int fnFGA_solodel(
	FHANDLE hSrc,
	FHANDLE hDst,
	int color
)
Visual Basic
Public Shared Function fnFGA_solodel ( 
	hSrc As FHANDLE,
	hDst As FHANDLE,
	color As Integer
) As Integer

Parameters

hSrc
Type: fvalgcli..::..FHANDLE
入力画像ハンドル (FGA 画像オブジェクト / type: bin)
hDst
Type: fvalgcli..::..FHANDLE
出力画像ハンドル (FGA 画像オブジェクト / type: bin)
color
Type: System..::..Int32
除去対象色(0,1)
  • 0: 黒の孤立点の消去
  • 1: 白の孤立点の消去

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_solodel()
        {
            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用)

            try
            {
                // 入力画像ファイルのロード.
                status = api.fnFIE_load_img_file(Defs.TestImageDir + "/testdata/bin_from_gray_01.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(type, channels, width, height);
                if (hfga_dst == IntPtr.Zero)
                    throw new FvException(f_err.F_ERR_NOMEMORY);

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

                // 出力画像の生成.
                hfie_dst = api.fnFIE_img_root_alloc(type, 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_solodel.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