You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenCvSharp.OpenCvSharpException: 'Failed to find dll "OpenCvSharpExtern", for processor architecture AMD64.' is thrown when create Mat at first time on .NET 5.
But it can ignore and it seems everything works fine.
I doubt WindowsLibraryLoader.cs#L110 misses to detect .NET 5 or more.
Summary of your issue
OpenCvSharp.OpenCvSharpException: 'Failed to find dll "OpenCvSharpExtern", for processor architecture AMD64.'
is thrown when createMat
at first time on .NET 5.But it can ignore and it seems everything works fine.
I doubt
WindowsLibraryLoader.cs#L110
misses to detect .NET 5 or more.Environment
What did you intend to be?
I guess, .NET Core detection needs to support .NET 5 or more (
WindowsLibraryLoader.cs#L110
).RuntimeInformation.FrameworkDescription
returnsI cannot show right answer is but it may check with Regex like
@"^.NET (\d|Core)"
or reject "NET Framework"?The text was updated successfully, but these errors were encountered: