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;
|
||||
@@ -10,7 +10,8 @@ int main()
|
||||
string image_path = "../img/1.png";
|
||||
Mat image = imread(image_path);
|
||||
|
||||
if (image.empty()) {
|
||||
if (image.empty())
|
||||
{
|
||||
cout << "错误:无法加载图像,请检查路径是否正确。" << endl;
|
||||
return -1;
|
||||
}
|
||||
@@ -20,5 +21,4 @@ int main()
|
||||
cout << "B: " << (int)pixel_value[0] << " "
|
||||
<< "G: " << (int)pixel_value[1] << " "
|
||||
<< "R: " << (int)pixel_value[2] << endl;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user