this code will writes "mat size = Size {width = 0, height = 0}":
下面的代码会输出"mat size = Size {width = 0, height = 0}"
using OpenCvSharp; internal class Program { static void Main(string[] args) { var mat = Cv2.ImRead(@"D:\xxxx.exr", ImreadModes.Unchanged); Console.WriteLine($"mat size = {mat.Size()}"); } }
additionally, OpencvSharp4.runtime.win(4.11.0.20250507) runs fine ( mat size > 0)
So, please give some infomation about how to use your library together with OpencvSharp4?
但是,如果添加了OpencvSharp4.runtime.win(4.11.0.20250507), 那么它就可以正常运行了( mat size > 0)。
所以,能不能请你给出一些信息,说明一下你这个库应该怎么配合OpencvSharp4来一起运行呢?