如何使用 Emgu cv CvInvoke.cvLoadImage(...) 从特定文件夹加载图像?我正在尝试这样做
IntPtr inputImage = CvInvoke.cvLoadImage("C:\\Users\\...\\ClassPic1.jpg");
那样行吗?如果是这样,我以后如何以 Emgu.CV.Image 文件的形式访问它,以便对它进行图像处理?
您可能应该使用以下方法来加载图像:
Image<Bgr, Byte> img1 = new Image<Bgr, Byte>("..\\..\\MyImage.jpg");// path can be absolute or relative.
这个 img1 变量可以稍后访问以对其执行操作。
检查此链接以获取更多详细信息。 http://www.emgu.com/wiki/index.php/Working_with_Images
OpenCV 函数在 CvInvoke 类中
所以:CvInvoke。
这些都是静态函数。