opencv mat转内存jpg

cv::Mat image = cv::imread("test.jpg");
std::vector data;
cv::imencode(".jpg", image, data);

你可能感兴趣的:(OPENCV,opencv,人工智能,计算机视觉)