core_solveCubic

[32/64bit] 三次方程式の実根を求めます。

core_solveCubic p1,p2,p3

p1 = sptr : IntPtr coeffs
p2 = sptr : IntPtr roots
p3 = var : out int returnValue

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

解説

関数 solveCubic は, coeffs が 4 要素のベクトルである場合に,3 次方程式の実根を求めます.


\coeffs を 4 要素のベクトルとすると[0] x^3 + ?????[1] x^2 + \\[2] x + ????? )[3] = 0\]








coeffsが3要素のベクトルの場合。


\x^3 + ????? )[0] x^2 + ???д??? [1] x + ???? [2] x^2 + ???? [3] = 0[1] x + ????? [2] = 0[2] = 0\]根は roots配列に格納されます。

元関数名(C#): core_solveCubic
元DLLエクスポート名: core_solveCubic
参照元CSファイル: Internal\PInvoke\NativeMethods\core\NativeMethods_core.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) core_solveCubic(cv::_InputArray *coeffs, cv::_OutputArray *roots, int *returnValue)
{
    BEGIN_WRAP
    *returnValue =  cv::solveCubic(*coeffs, *roots);
    END_WRAP
}

情報

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