We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InputArray.Create<Point3d>() API returns type CV_32FC3.
InputArray.Create<Point3d>()
Windows 11 Visual Studio 2022 NuGet package, OpenCvSharp4.Windows 4.8.0.20230708
Point3d[] Src = new Point3d[1]; InputArray Dst = InputArray.Create(Src); Debug.WriteLine(Dst.GetMat().Type());
CV_32FC3
It returns CV_32FC3, but I'm expecting CV_64FC3. Or there is other reasons?
https://github.com/shimat/opencvsharp/blob/a52ac58887f0ed612229f94d227c579a42d5653d/src/OpenCvSharp/Modules/core/InputArray.cs#L572C17-L572C17
The text was updated successfully, but these errors were encountered:
Fix #1630
93c90a0
Sorry for the delay in responding, thank you. This issue will be resolved in #1637.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Summary of your issue
InputArray.Create<Point3d>()
API returns type CV_32FC3.Environment
Windows 11
Visual Studio 2022
NuGet package, OpenCvSharp4.Windows 4.8.0.20230708
What did you do when you faced the problem?
Example code:
Output:
What did you intend to be?
It returns CV_32FC3, but I'm expecting CV_64FC3.
Or there is other reasons?
https://github.com/shimat/opencvsharp/blob/a52ac58887f0ed612229f94d227c579a42d5653d/src/OpenCvSharp/Modules/core/InputArray.cs#L572C17-L572C17
The text was updated successfully, but these errors were encountered: