讀取影像格式與轉換
var filePath = "D:\\test.png";
Image<Bgr, Byte> imgOri = new Image<Bgr, Byte>(filePath);
讀取影像格式與轉換
var filePath = "D:\\test.png";
Image<Bgr, Byte> imgOri = new Image<Bgr, Byte>(filePath);
影像讀取為Bgr格式
var filePath = "D:\\test\\test.png";
Image<Bgr, Byte> imgOri = new Image<Bgr, Byte>(filePath);