程序已退出,代码为0(0x0)。 C ++

时间:2015-10-21 10:18:34

标签: c++ opencv

我收到了这个错误。我正在使用OpenCV,我正在尝试在单个图像中检测更多模板。这是我的代码:

int main() {
    cv::Mat ref = cv::imread("image.jpg");
    for (int i = 0; i < numTemplates; i++){

        cv::Mat tpl = cv::imread(names[i]);
        if (ref.empty() || tpl.empty())
            return -1;

        cv::Mat gref, gtpl;

        cv::cvtColor(tpl, gtpl, CV_BGR2GRAY);
        cv::cvtColor(ref, gref, CV_BGR2GRAY);
        cv::Mat res(ref.rows - tpl.rows + 1, ref.cols - tpl.cols + 1, CV_32FC1);
        cv::matchTemplate(gref, gtpl, res, CV_TM_CCOEFF_NORMED);
        cv::threshold(res, res, 0.8, 1., CV_THRESH_TOZERO);

        while (true)
        {
            double minval, maxval, threshold = 0.8;
            cv::Point minloc, maxloc;
            cv::minMaxLoc(res, &minval, &maxval, &minloc, &maxloc);

            if (maxval >= threshold)
            {
                cv::rectangle(
                            ref,
                            maxloc,
                            cv::Point(maxloc.x + tpl.cols, maxloc.y + tpl.rows),
                            CV_RGB(0, 255, 0), 2
                            );
                cv::floodFill(res, maxloc, cv::Scalar(0), 0, cv::Scalar(.1), cv::Scalar(1.));
            }
            else
                break;
        }
    }
    cv::imshow("reference", ref);
    cv::waitKey();
    return 0;
}

1 个答案:

答案 0 :(得分:2)

退出代码是您的main返回的值(有一些例外情况,可能是发送给exit函数的值)。返回值0(通常)被认为是成功的信号。

您可以尝试返回其他内容并看到它将以另一个退出代码退出(但某些程序可能会将其作为程序中的错误指示,因此请在之后将其更改)。