OpenCV 直线检测 - 哆啦比猫的技术瞎扯 - Arch Linux · ドラえもん · 实时绘制

OpenCV 直线检测

哆啦比猫 posted @ 2013年8月28日 16:50 in C/C++ with tags opencv line detect , 6045 阅读

这货玩玩的

到时候再学学手势识别之类的就更好玩了~喵~~

CMakeLists.txt:

cmake_minimum_required(VERSION 2.8)
ADD_DEFINITIONS(-std=gnu++0x -Wall -O3)
project(opencv)
find_package(OpenCV REQUIRED)
add_executable(opencv opencv.cc)
target_link_libraries(opencv ${OpenCV_LIBS})

opencv.cc:

#include <err.h>
#include <iostream>
#include <opencv2/opencv.hpp>

using namespace std;
using namespace cv;

void text(Mat & image, const string & str, int r, int g, int b)
{
    cv::rectangle(image, Point(0, 0), Point(800, 40), Scalar(0, 0, 0), -1);
    putText(image, str, Point(10, 30), 2, 1, Scalar(b, g, r), 2);
}

int main(int argc, char * argv[])
{
    string winBefore = "opencv learning - before";
    string winAfter  = "opencv learning - after" ;

    VideoCapture cap(0);
    if (!cap.isOpened()) err(1, "unable to open capture device.");

    namedWindow(winBefore);
    namedWindow(winAfter);
    moveWindow(winAfter, 720, 0);

    Mat gray;
    vector<Vec2f> lines;
    for (;;) {
        Mat frame;
        cap >> frame;

        imshow(winBefore, frame);

        // gray, blur, find edges, find lines.
        cvtColor(frame, gray, CV_BGR2GRAY);
        GaussianBlur(gray, gray, Size(7, 7), 1.5, 1.5);
        Canny(gray, gray, 0, 60, 3);
        HoughLines(gray, lines, 1, CV_PI/180, 100);

        // draw the result
        cvtColor(gray, gray, CV_GRAY2BGR);
        if (!lines.size())
            text(frame, "No line detected.", 255, 100, 0);
        else if (lines.size() < 100) {
            stringstream ss;
            ss << lines.size() << " line(s) detected.";
            text(frame, ss.str(), 100, 255, 0);

            for (auto line : lines) {
                float rho   = line[0];
                float theta = line[1];
                double c = cos(theta), s = sin(theta);
                double x = c*rho, y = s*rho;
                Point p1(x - 1000*s, y + 1000*c);
                Point p2(x + 1000*s, y - 1000*c);
                cv::line(gray, p1, p2, Scalar(0, 0, 255), 1, CV_AA);
            }
        }
        else {
            stringstream ss;
            ss << "Too many lines (" << lines.size() << ").";
            text(frame, ss.str(), 255, 0, 100);
        }

        text(gray, "", 0, 0, 0);    // clear out heads.
        addWeighted(frame, 1, gray, 1, 0.0, frame);
        imshow(winAfter, frame);

        if (waitKey(30) >= 0) break;
    }

    return 0;
}

Generated by Vim, colorscheme from Ubuntu 12.04, post-processed by a vimscript written by eXerigumo Clanjor (哆啦比猫/兰威举).

至于编译嘛:

cmake .
make
./opencv

凡未特殊声明(转载/翻译),所有文章均为原创。
by Giumo Xavier Clanjor (哆啦比猫/兰威举), 2010-2019.
知识共享许可协议本作品采用知识共享署名·非商业性使用·相同方式共享 3.0 中国大陆许可协议进行许可。
文中凡未特殊声明且未声明为引用的代码均以 MIT 协议授权。

  • 无匹配
blog comments powered by Disqus
© 2010-2019 Giumo Xavier Clanjor (哆啦比猫/兰威举).
© 2013, 2014, 2015-2016 and 2017 The Dark Colorscheme Designed by Giumo Xavier Clanjor (哆啦比猫/兰威举).
知识共享署名·非商业性使用·相同方式共享 3.0 中国大陆许可协议
| © 2007 LinuxGem | Design by Matthew "Agent Spork" McGee