ximgproc_createSuperpixelSEEDS

[32/64bit] SuperpixelSEEDSオブジェクトを初期化します。

ximgproc_createSuperpixelSEEDS p1,p2,p3,p4,p5,p6,p7,p8,p9

p1 = int : int image_width
p2 = int : int image_height
p3 = int : int image_channels
p4 = int : int num_superpixels
p5 = int : int num_levels
p6 = int : int prior
p7 = int : int histogram_bins
p8 = int : int double_step
p9 = var : out IntPtr returnValue

(プラグイン / モジュール : OpenCvSharpExtern.dll)

解説

この関数は,入力画像に対して SuperpixelSEEDS オブジェクトを初期化します.これは,画像のパラメータである image_width, image_height, image_channels を格納します.また,SEEDS スーパーピクセルアルゴリズムのパラメータである num_superpixels, num_levels, use_prior, histogram_bins, double_step も設定されます.num_levels のレベル数は,アルゴリズムが最適化に利用するブロックレベルの量を定義します.初期設定では,スーパーピクセルが画像の幅と高さに均等に配置されたグリッドになっています.大きいブロックはスーパーピクセルのサイズに対応し、小さいブロックのレベルは、大きいブロックを2×2のピクセルのブロックに分割し、小さいブロックのレベルまで再帰的に形成されます。4つのブロックレベルの初期化の例を以下の図に示します。

元関数名(C#): ximgproc_createSuperpixelSEEDS
元DLLエクスポート名: ximgproc_createSuperpixelSEEDS
参照元CSファイル: Internal\PInvoke\NativeMethods\ximgproc\NativeMethods_ximgproc_Superpixel.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) ximgproc_createSuperpixelSEEDS(
    int image_width, int image_height, int image_channels,
    int num_superpixels, int num_levels, int prior,
    int histogram_bins, int double_step,
    cv::Ptr<cv::ximgproc::SuperpixelSEEDS>** returnValue)
{
    BEGIN_WRAP
    const auto ptr = cv::ximgproc::createSuperpixelSEEDS(
        image_width, image_height, image_channels, num_superpixels, num_levels, prior, histogram_bins, double_step);
    *returnValue = new cv::Ptr<cv::ximgproc::SuperpixelSEEDS>(ptr);
    END_WRAP
}

情報

プラグイン / モジュールOpenCvSharpExtern.dll
バージョン1.00
作成日2021/11/30
著作者inovia
URLhttps://hsp.moe/
備考#include "OpenCvSharpExtern32.as"
#include "OpenCvSharpExtern64.as"
使用するHSPランタイムのビット数に合わせたインクルードファイルを使用すること
タイプOpenCVSharpラッパーDLL
グループNativeMethods_ximgproc_Superpixel
対応環境
  • Windows 版 HSP
hs ファイルhsphelp\OpenCvSharpExtern.hs