calib3d_findFundamentalMat_InputArray

[32/64bit] 2つの画像中の対応する点から,基本行列を求めます.

calib3d_findFundamentalMat_InputArray p1,p2,p3,p4,p5,p6,p7

p1 = sptr : IntPtr points1
p2 = sptr : IntPtr points2
p3 = int : int method
p4 = double : double param1
p5 = double : double param2
p6 = sptr : IntPtr mask
p7 = var : out IntPtr returnValue

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

解説

この関数は,上述した4つの手法のうちの1つを用いて基本行列を計算し,その結果を返します.通常は,1つの行列だけが求められます.計算された基本行列は,指定された点に対応するエピポーラ線を求める computeCorrespondEpilines に渡すことができます.また,stereoRectifyUncalibrated に渡して,平行化変換を計算することもできます. :// 例.RANSAC アルゴリズムを用いた基本行列の推定int point_count = 100;vector<Point2f> points1(point_count);vector<Point2f> points2(point_count);// ここでポイントを初期化します ....for( int i = 0; i < point_count; i++ ){ points1[i] = ...; points2[i] = ...;}Mat fundamental_matrix = findFundamentalMat(points1, points2, FM_RANSAC, 3, 0.99);fragment

元関数名(C#): calib3d_findFundamentalMat_InputArray
元DLLエクスポート名: calib3d_findFundamentalMat_InputArray
参照元CSファイル: Internal\PInvoke\NativeMethods\calib3d\NativeMethods_calib3d.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) calib3d_findFundamentalMat_InputArray(
    cv::_InputArray *points1, cv::_InputArray *points2,
    int method, double param1, double param2,
    cv::_OutputArray *mask,
    cv::Mat **returnValue)
{
    BEGIN_WRAP
    const auto mat = cv::findFundamentalMat(
        *points1, *points2, method, param1, param2, entity(mask));
    *returnValue = new cv::Mat(mat);
    END_WRAP
}

情報

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