我使用emgu CV版3.我尝试加载图像处理。 但它会为我提供错误。 据错误,它会说像无法读取。 但我有一个位置下的图像。
这是我的代码行..
Image<Bgr, Byte> image = new Image<Bgr, Byte>("image.jpg");
我使用emgu CV版3.我尝试加载图像处理。 但它会为我提供错误。 据错误,它会说像无法读取。 但我有一个位置下的图像。
这是我的代码行..
Image<Bgr, Byte> image = new Image<Bgr, Byte>("image.jpg");
您提供的代码行是正确的。 请以绝对路径进行检查。 如果你的图片是不是你的源目录的相对路径(你给了唯一的形象,这意味着你的形象就是你的源目录中的名称)将行不通内那是因为工作。 其良好的检查与您的绝对路径。 像如下
Image<Bgr, Byte> image = new Image<Bgr, Byte>(@"E:\Downloads\image.jpg");
图像“image.jpg的”为E内:\下载位置。