OpenCV 在 C++ 中的 Canny 边缘检测

OpenCV#39;s Canny Edge Detection in C++(OpenCV 在 C++ 中的 Canny 边缘检测)
本文介绍了OpenCV 在 C++ 中的 Canny 边缘检测的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想提取手的边缘,但得到以下结果.我已尝试调整低阈值和高阈值,但仍然无法获得所需的输出.我已经包含在代码及其输出下面.似乎是什么问题?

I want to extract the edges of hand but I get the following result. I've tried adjusting the low and high threshold but I still can't get the desired output. I have included below the code and its output. What seems to be the problem?

这是由以下代码生成的输出图像.

This is the output image generated by the code below.

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

int main(){

    cv::Mat image= cv::imread("open_1a.jpg");
    cv::Mat contours;
    cv::Mat gray_image;

    cvtColor( image, gray_image, CV_RGB2GRAY );

    cv::Canny(image,contours,10,350);

    cv::namedWindow("Image");
    cv::imshow("Image",image);

    cv::namedWindow("Gray");
    cv::imshow("Gray",gray_image);

    cv::namedWindow("Canny");
    cv::imshow("Canny",contours);
    cv::waitKey(0);
}

推荐答案

更改此行

cvtColor( image, gray_image, CV_RGB2GRAY );

std::vector<cv::Mat> channels;
cv::Mat hsv;
cv::cvtColor( image, hsv, CV_RGB2HSV );
cv::split(hsv, channels);
gray_image = channels[0];

问题似乎是你的手的灰度与灰色背景非常接近.我在色调(颜色)上应用了 Canny,因为肤色应该足够不同.

The problem seems to be that your hand in gray scale is very close to the gray background. I have applied Canny on the hue (color) because the skin color should be sufficiently different.

此外,Canny 阈值看起来有点疯狂.公认的规范是较高的应该是较低的 2 到 3 倍.350有点太多了,无助于解决主要问题.

Also, the Canny thresholds look a bit crazy. The accepted norm is that the higher one should be 2x to 3x the lower. 350 is a bit too much and it doesn't help solve the main problem.

编辑

通过这些阈值,我能够提取出相当不错的轮廓

with these thresholds I was able to extract quite a good contour

cv::Canny(image,contours,35,90);

cv::Canny(image,contours,35,90);

阅读有关算法的一些理论将帮助您了解会发生什么以及您应该采取哪些措施来改进.wiki canny 在 google 上

Reading a bit of theory about the algorithm will help you understand what happens and what you should do to improve. wiki canny on google

然而,上述改进会给你带来更好的结果(假设你使用比 10, 350 更好的阈值.试试 (40, 120) )

However, the improvement above will give you much better results (provided you use better thresholds than 10, 350. Try (40, 120) )

这篇关于OpenCV 在 C++ 中的 Canny 边缘检测的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)