OpenCV C++ 轮廓提取坐标和中心点并在原图中显示的代码
时间: 2023-09-13 08:04:54 浏览: 293
### 回答1:
以下是 OpenCV C 语言的轮廓提取坐标和中心点并在原图中显示的代码:
```c
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
Mat src = imread("test.jpg");
Mat gray, binary;
cvtColor(src, gray, COLOR_BGR2GRAY);
threshold(gray, binary, , 255, THRESH_BINARY | THRESH_OTSU);
vector<vector<Point>> contours;
vector<Vec4i> hierarchy;
findContours(binary, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point());
Mat dst = src.clone();
for (size_t i = ; i < contours.size(); i++)
{
drawContours(dst, contours, i, Scalar(, , 255), 2, 8, hierarchy);
Moments mu = moments(contours[i], false);
Point2f center(mu.m10 / mu.m00, mu.m01 / mu.m00);
circle(dst, center, 2, Scalar(, 255, ), 2, 8, );
cout << "Contour " << i << " center: " << center << endl;
}
imshow("src", src);
imshow("dst", dst);
waitKey();
return ;
}
```
希望能对你有所帮助。
### 回答2:
下面是一个使用OpenCV C++库来提取图像轮廓、计算轮廓中心点并在原图中显示的示例代码:
```cpp
#include <opencv2/opencv.hpp>
using namespace cv;
int main()
{
// 读取图像
Mat image = imread("image.jpg", IMREAD_COLOR);
// 灰度化图像
Mat gray;
cvtColor(image, gray, COLOR_BGR2GRAY);
// 二值化图像
Mat binary;
threshold(gray, binary, 100, 255, THRESH_BINARY);
// 查找轮廓
std::vector<std::vector<Point>> contours;
findContours(binary, contours, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE);
// 绘制轮廓
drawContours(image, contours, -1, Scalar(0, 0, 255), 2);
for (const auto& contour : contours)
{
// 计算轮廓的矩
Moments moments = moments(contour);
double cx = moments.m10 / moments.m00;
double cy = moments.m01 / moments.m00;
// 绘制中心点
circle(image, Point(cx, cy), 4, Scalar(0, 255, 0), -1);
}
// 显示结果图像
imshow("Contours", image);
waitKey(0);
return 0;
}
```
代码中,首先读取图像,并将其转换为灰度图像。然后,通过二值化处理将图像转换为黑白图像。
之后,使用`findContours`函数查找图像中的轮廓。参数`RETR_EXTERNAL`表示只检测最外层的轮廓,`CHAIN_APPROX_SIMPLE`表示使用简化的轮廓表示方法。
接着,使用`drawContours`函数在原图像上绘制轮廓线。
对于每个轮廓,通过计算矩的方式计算出轮廓的中心点坐标。最后,使用`circle`函数绘制出每个轮廓的中心点。
最后,将处理后的图像显示出来,等待用户按键退出。
### 回答3:
以下是使用OpenCV C库进行轮廓提取、坐标和中心点计算,并在原图中显示的示例代码:
```c
#include <opencv2/opencv.hpp>
using namespace cv;
int main() {
// 读取图像
Mat image = imread("image.jpg", IMREAD_COLOR);
// 灰度图
Mat gray;
cvtColor(image, gray, COLOR_BGR2GRAY);
// 二值化
Mat binary;
threshold(gray, binary, 128, 255, THRESH_BINARY);
// 轮廓检测
std::vector<std::vector<Point>> contours;
std::vector<Vec4i> hierarchy;
findContours(binary, contours, hierarchy, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE);
// 遍历轮廓
for (int i = 0; i < contours.size(); i++) {
// 绘制轮廓
drawContours(image, contours, i, Scalar(0, 0, 255), 2);
// 计算轮廓的边界框
Rect bbox = boundingRect(contours[i]);
// 提取坐标
Point tl = bbox.tl();
Point br = bbox.br();
// 计算中心点
Point center = (tl + br) / 2;
// 在原图中显示坐标和中心点
putText(image, "Top Left: (" + std::to_string(tl.x) + ", " + std::to_string(tl.y) + ")", tl, FONT_HERSHEY_SIMPLEX, 0.5, Scalar(0, 255, 0), 1);
putText(image, "Bottom Right: (" + std::to_string(br.x) + ", " + std::to_string(br.y) + ")", br, FONT_HERSHEY_SIMPLEX, 0.5, Scalar(0, 255, 0), 1);
putText(image, "Center: (" + std::to_string(center.x) + ", " + std::to_string(center.y) + ")", center, FONT_HERSHEY_SIMPLEX, 0.5, Scalar(0, 255, 0), 1);
}
// 显示结果
imshow("Contours", image);
waitKey(0);
return 0;
}
```
此示例代码通过读取名为"image.jpg"的图像,并使用OpenCV进行轮廓提取、坐标和中心点计算。然后,使用绘制轮廓和putText函数将坐标和中心点信息显示在原图中。最后,通过imshow函数显示结果。
阅读全文