image - 使用 findContours 时如何避免检测图像帧

标签 image opencv computer-vision

在使用 findContours (OpenCV) 时如何避免检测图像的框架?直到我找到 OpenCV findContours allways finds two contours for every object并实现了这个答案,我没有始终如一地检测到内部对象(对象线被分成几 block ),但现在我每次都检测到图像帧。

图像是从底部看到的四旋翼无人机;我正在使用一系列图片来“训练”对象检测。为此,我需要确保能够始终如一地获取 UAV 对象。我想我可以反转颜色,但这似乎是一个肮脏的技巧。

图像首先是 findContours 之前的输入图像,以及生成的轮廓。我有七张测试图像,所有七张都有框架和无人机。胡时刻非常相似(正如预期的那样)。

Binary image, after erode

Binary image, contours detected

用于查找轮廓/对象和计算 hu 矩的代码(C++11,而且相当困惑):

#include <opencv/cv.h>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
#include <fstream>
#include <string>

using namespace cv;
using namespace std;

#define EROSION_SIZE 1
#define ERODE_CANNY_PREP_ITERATIONS 5

int main() {
    Mat image, canny_output, element, padded;
    RNG rng(12345);
    int numbers[] = {195, 223, 260, 295, 331, 368, 396};
    string pre = "/home/alrekr/Pictures/UAS/hu-images/frame_";
    string middle = "_threshold";
    string post = ".png";
    string filename = "";
    vector<vector<Point>> contours;
    vector<Vec4i> hierarchy;
    ofstream fout("/home/alrekr/Pictures/UAS/hu-data/hu.dat");
    element = getStructuringElement(MORPH_RECT,
            Size(2*EROSION_SIZE + 1, 2*EROSION_SIZE+1),
            Point(EROSION_SIZE, EROSION_SIZE));
    namedWindow("Window", CV_WINDOW_AUTOSIZE);
    for (int i : numbers) {
        filename = pre + to_string(i) + middle + post;
        image = imread(filename, CV_LOAD_IMAGE_GRAYSCALE);
        erode(image, image, element, Point(-1,-1), ERODE_CANNY_PREP_ITERATIONS);
        imwrite("/home/alrekr/Pictures/UAS/hu-data/prep_for_canny_" + to_string(i) + ".png", image);
    findContours(image, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
        vector<Moments> mu(contours.size());
        if(contours.size() < 1) {
            cout << "No contours found" << endl;
        } else {
            cout << "Contours found: " << contours.size() << endl;
        }
        vector<Point2f> mc(contours.size());
        for(int j = 0; j < (int)contours.size(); j++) {
            mc[j] = Point2f(mu[j].m10/mu[j].m00 , mu[j].m01/mu[j].m00);
        }
        Mat drawing = Mat::zeros(image.size(), CV_8UC3);
        for(int j = 0; j < (int)contours.size(); j++) {
            Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0,255), rng.uniform(0,255));
            drawContours(drawing, contours, j, color, 2, 8, hierarchy, 0, Point());
            imshow("Window", drawing);
            waitKey(0);
        }
        imwrite("/home/alrekr/Pictures/UAS/hu-data/cannied_" + to_string(i) + ".png", drawing);
        fout << "Frame " << i << "\n";
        for(int j = 0; j < (int)contours.size(); j++) {
            mu[j] = moments(contours[j]);
            double hu[7];
            HuMoments(mu[j], hu);
            fout << "Object " << to_string(j) << "\n";
            fout << hu[0] << "\n";
            fout << hu[1] << "\n";
            fout << hu[2] << "\n";
            fout << hu[3] << "\n";
            fout << hu[4] << "\n";
            fout << hu[5] << "\n";
            fout << hu[6] << "\n";
        }
    }
    fout.close();
    return 0;
}

最佳答案

函数 cv::findContours 描述了由 1 组成的区域的轮廓。不过,您感兴趣的区域是黑色的。

所以解决方法很简单。在检测轮廓之前反转输入图像:

image = 255 - image;

下面是我从上面的示例中派生的代码示例:

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

#include <iostream>
#include <string>

#define EROSION_SIZE 1
#define ERODE_CANNY_PREP_ITERATIONS 5

int main( int argc, char ** argv )
{
    // Display the version of the linked OpenCV library.
    std::cout << "Using OpenCV " << CV_VERSION_MAJOR << "." << CV_VERSION_MINOR << ".";
    std::cout << CV_VERSION_REVISION << CV_VERSION_STATUS << std::endl;

    // Load the input file.
    std::string filename = std::string( argv[ 1 ] );
    cv::Mat image = imread( filename, cv::IMREAD_GRAYSCALE );

    // Invert the image so the area of the UAV is filled with 1's. This is necessary since
    // cv::findContours describes the boundary of areas consisting of 1's.
    image = 255 - image;

    // Detect contours.
    std::vector< std::vector< cv::Point> > contours;
    std::vector< cv::Vec4i > hierarchy;

    cv::findContours( image, contours, hierarchy, cv::RETR_TREE, cv::CHAIN_APPROX_SIMPLE );
    std::cout << "Contours found: " << contours.size() << std::endl;

    // Display and save the results.
    cv::RNG rng( 12345 );
    cv::Mat contourImage = cv::Mat::zeros( image.size(), CV_8UC3);

    for( size_t j = 0; j <  contours.size(); j++ )
    {
        cv::Scalar color( rng.uniform( 0, 255 ), rng.uniform( 0,255 ), rng.uniform( 0, 255 ) );
        cv::drawContours( contourImage, contours, j, color, 2, 8, hierarchy, 0, cv::Point() );
    }

//  cv::imwrite( "contours.png", contourImage );

    cv::imshow( "contours", contourImage );
    cv::waitKey( 0 );

    return 0;
}

控制台输出如下:

$ ./a.out gvlGK.png 
Using OpenCV 3.0.0-beta
Contours found: 1

生成的轮廓图像是这样的:

contours

关于image - 使用 findContours 时如何避免检测图像帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29329866/

相关文章:

image - 在 ASP.Net MVC3 Razor 中将 Viewbag 数据从 View 传递到 Controller

ios - 如何使用 Graphics Context 清除具有关闭路径的任何 imageView 的图像

xml - 将打开的cv haar功能xml文件转换为图像

python - 使用opencv python在图像上绘制网格线

python - 颜色阈值 : Why does mask make a drastic difference according to limits specified?

algorithm - 开始学习边缘检测/图像识别的最佳文章

c++ - OpenFrameworks 中的视差图后处理

html - CSS 无法移动我的图片

ios - 带有拉普拉斯公式的 OpenCV 在 iOS 中检测图像是否模糊

python - OpenCV错误:该操作既不是 'array op array'也不是 'array op scalar',也不是函数 'scalar op array'中的 'cv::arithm_op'