Em là beginer, đang coi cái wrapper của OpenCV, xem cái vidu CameraCapture của nó thì demo chạy ngon, đến khi em thử gõ lại y hệt code nó sang project mới thì nó báo lỗi:
Convertion from Image<Bgr, Byte> to Image<Gray, Byte> is not supported by OpenCV",
Image<Bgr, Byte> frame = _capture.QueryFrame(); //Lấy ảnh từ webcam
Image<Gray, Byte> grayFrame = frame.Convert<Gray, Byte>(); // chuyển thành ảnh xám
Cái code đó là giống y chang example của nó mà nó báo lỗi lúc runtime, ko hiểu là thiếu j nữa, ai bít chỉ em cái...
Convertion from Image<Bgr, Byte> to Image<Gray, Byte> is not supported by OpenCV",
Image<Bgr, Byte> frame = _capture.QueryFrame(); //Lấy ảnh từ webcam
Image<Gray, Byte> grayFrame = frame.Convert<Gray, Byte>(); // chuyển thành ảnh xám
Cái code đó là giống y chang example của nó mà nó báo lỗi lúc runtime, ko hiểu là thiếu j nữa, ai bít chỉ em cái...
Comment