[32/64bit] これらの関数は,与えられた画像をスティッチしようとします.
stitching_Stitcher_stitch2_MatArray p1,p2,p3,p4,p5,p6,p7,p8
p1 = sptr : IntPtr obj p2 = sptr : IntPtr[] images p3 = int : int imagesSize p4 = sptr : IntPtr[] rois p5 = int : int roisSize1 p6 = var : int[] roisSize2 p7 = sptr : IntPtr pano p8 = var : out int returnValue
(プラグイン / モジュール : OpenCvSharpExtern.dll)
元関数名(C#): stitching_Stitcher_stitch2_MatArray 元DLLエクスポート名: stitching_Stitcher_stitch2_MatArray 参照元CSファイル: Internal\PInvoke\NativeMethods\stitching\NativeMethods_stitching.cs ▼ C言語側関数定義
CVAPI(ExceptionStatus) stitching_Stitcher_stitch2_MatArray(
cv::Stitcher *obj, const cv::Mat **images, const int imagesSize,
const CvRect **rois, const int roisSize1, int *roisSize2,
cv::_OutputArray *pano, int *returnValue)
{
BEGIN_WRAP
std::vector<cv::Mat> imagesVec;
toVec(images, imagesSize, imagesVec);
std::vector<std::vector<cv::Rect> > roisVec;
toVec(rois, roisSize1, roisSize2, roisVec);
*returnValue = static_cast<int>(obj->stitch(imagesVec, roisVec, *pano));
END_WRAP
}
| プラグイン / モジュール | OpenCvSharpExtern.dll |
| バージョン | 1.00 |
| 作成日 | 2021/11/30 |
| 著作者 | inovia |
| URL | https://hsp.moe/ |
| 備考 | #include "OpenCvSharpExtern32.as"
#include "OpenCvSharpExtern64.as" 使用するHSPランタイムのビット数に合わせたインクルードファイルを使用すること |
| タイプ | OpenCVSharpラッパーDLL |
| グループ | NativeMethods_stitching |
| 対応環境 |
|
| hs ファイル | hsphelp\OpenCvSharpExtern.hs |