保存圖片 c語言
2024-02-15 17:12:23
```c++
#include
int main()
{
cv::Mat img = cv::imread("input.jpg");
if(img.empty())
{
std::cout << "Could not open or find the image" << std::endl;
return -;
}
// 這里進(jìn)行任何你的圖像處理
cv::imwrite("output.jpg", img);
return ;
}
```