shimat / opencvsharp

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

[Error]System.DllNotFoundException #1625

Open Hardikzinzala opened 7 months ago

Hardikzinzala commented 7 months ago

Summary of your issue

when i add this plugins in my maui project and use their function give me this error.

Environment

.Net Maui (Version - 7)

What did you do when you faced the problem?

I want to stream video capture by camera

Example code:

using (VideoCapture capture = new VideoCapture(0)) { capture.Set(VideoCaptureProperties.Fps, 30.0); OpenCvSharp.Size dsize = new OpenCvSharp.Size(capture.FrameWidth, capture.FrameHeight); using (Mat frame = new Mat()) { using (Mat dst = new Mat()) { while (true) { capture.Read(frame); if (frame.Empty()) break;
} } } }

Output:

System.DllNotFoundException Message=OpenCvSharpExtern