shimat / opencvsharp

OpenCV wrapper for .NET
Apache License 2.0
5.22k stars 1.13k forks source link

Feature Request EstimateAffine3D #1646

Open MoHamzawy opened 4 months ago

MoHamzawy commented 4 months ago

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?