shimat / opencvsharp

OpenCV wrapper for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request EstimateAffine3D

MoHamzawy opened this issue · comments

Summary of your issue

I am looking for a function that exists in opencv C++ in calib3d. Its called estimateAffine3D with this signature:

cv::Mat estimateAffine3D(InputArray src, InputArray dst,
CV_OUT double
scale = nullptr, bool force_rotation = true);
*

It seems that in the current version only this signature is added:

CV_EXPORTS_W int estimateAffine3D(InputArray src, InputArray dst,
OutputArray out, OutputArray inliers,
double ransacThreshold = 3, double confidence = 0.99);

Environment

Write your environment.

What did you do when you faced the problem?

Write here

Example code:

paste your core code

Output:

paste your output

What did you intend to be?