Format Code
This commit is contained in:
+4
-4
@@ -1,6 +1,6 @@
|
||||
// 修改像素
|
||||
#include<opencv2/opencv.hpp>
|
||||
#include<iostream>
|
||||
#include <opencv2/opencv.hpp>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
using namespace cv;
|
||||
@@ -11,7 +11,8 @@ int main()
|
||||
Mat image = imread(image_path);
|
||||
Mat result = image.clone();
|
||||
|
||||
if (image.empty()) {
|
||||
if (image.empty())
|
||||
{
|
||||
cout << "错误:无法加载图像,请检查路径是否正确。" << endl;
|
||||
return -1;
|
||||
}
|
||||
@@ -24,5 +25,4 @@ int main()
|
||||
waitKey(0);
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user