imgproc_seg_ISMB_new

[32/64bit][関数名変更] cv::segmentation::IntelligentScissorsMB のインスタンスを生成します

imgproc_seg_ISMB_new p1

p1 = var : out IntPtr returnValue

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

解説

Intelligent Scissorsによる画像分割.


このクラスは,画像のセグメンテーションに利用できる2点間のパス(輪郭)を求めるために利用されます.


使用例: segmentation::IntelligentScissorsMB tool; tool.setEdgeFeatureCannyParameters(16, 100) // エッジ特徴抽出器としてCanny()を使用 .setGradientMagnitudeMaxLimit(200); // 画像特徴を計算 tool.applyImage(image); // 指定されたソースポイントのマップを計算 Point source_point(200, 100); tool.buildMap(source_point); // 指定されたターゲットポイントと事前に計算されたマップ(内部に保存されている)の輪郭を // 高速に取得する Point target_point(400, 300); std::vector<Point> pts; tool.getContour(target_point, pts); 参考にしてください。Eric N. MortensenとWilliam A. Barrettが設計したアルゴリズム「Intelligent Scissors for Image Composition」(Brigham Young University)[178]。


元関数名(C#): imgproc_segmentation_IntelligentScissorsMB_new
元DLLエクスポート名: imgproc_segmentation_IntelligentScissorsMB_new
参照元CSファイル: Internal\PInvoke\NativeMethods\imgproc\NativeMethods_imgproc_Segmentation.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) imgproc_segmentation_IntelligentScissorsMB_new(
    cv::segmentation::IntelligentScissorsMB** returnValue)
{
    BEGIN_WRAP
    *returnValue = new cv::segmentation::IntelligentScissorsMB();
    END_WRAP
}

情報

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