1

我在 opencv3.0.0-alpha 下尝试示例代码时遇到以下错误:

ps@hp-pavilion:~/cvit/opencv_projects$ make stitch

g++ `pkg-config --cflags opencv` -o stitch stitch.cpp `pkg-config --libs opencv`
/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o: In function `_start':
/build/glibc-qbmteM/glibc-2.21/csu/../sysdeps/x86_64/start.S:114: undefined reference to `main'
collect2: error: ld returned 1 exit status
makefile:5: recipe for target 'stitch' failed
make: *** [stitch] Error 1

我只是从 opencv/samples/cpp 复制粘贴了stitching.cpp 文件,并将其重命名为stitch.cpp 并将其放置在我的项目文件夹中,我也有我的makefile。生成文件看起来像:

CFLAGS = `pkg-config --cflags opencv`
LIBS = `pkg-config --libs opencv`

% : %.cpp
    g++ $(CFLAGS) -o $@ $< $(LIBS)

我简单地编译 .cpp 文件,例如 temp.cpp

make temp

并且每次都能完美运行。但是使用这个特殊的拼接代码,每次都会弹出错误。这是示例代码 -

#include <iostream>
#include <fstream>
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/stitching.hpp"

using namespace std;
using namespace cv;

bool try_use_gpu = false;
vector<Mat> imgs;
string result_name = "stitch_result.jpg";

void printUsage();
int parseCmdArgs(int argc, char** argv);

int main(int argc, char* argv[])
{
    int retval = parseCmdArgs(argc, argv);
    if (retval) return -1;

    Mat pano;
    Stitcher stitcher = Stitcher::createDefault(try_use_gpu);
    Stitcher::Status status = stitcher.stitch(imgs, pano);

    if (status != Stitcher::OK)
    {
        cout << "Can't stitch images, error code = " << int(status) << endl;
        return -1;
    }

    imwrite(result_name, pano);
    return 0;
}


void printUsage()
{
    cout <<
        "Rotation model images stitcher.\n\n"
        "stitching img1 img2 [...imgN]\n\n"
        "Flags:\n"
        "  --try_use_gpu (yes|no)\n"
        "      Try to use GPU. The default value is 'no'. All default values\n"
        "      are for CPU mode.\n"
        "  --output <result_img>\n"
        "      The default is 'result.jpg'.\n";
}


int parseCmdArgs(int argc, char** argv)
{
    if (argc == 1)
    {
        printUsage();
        return -1;
    }
    for (int i = 1; i < argc; ++i)
    {
        if (string(argv[i]) == "--help" || string(argv[i]) == "/?")
        {
            printUsage();
            return -1;
        }
        else if (string(argv[i]) == "--try_use_gpu")
        {
            if (string(argv[i + 1]) == "no")
                try_use_gpu = false;
            else if (string(argv[i + 1]) == "yes")
                try_use_gpu = true;
            else
            {
                cout << "Bad --try_use_gpu flag value\n";
                return -1;
            }
            i++;
        }
        else if (string(argv[i]) == "--output")
        {
            result_name = argv[i + 1];
            i++;
        }
        else
        {
            Mat img = imread(argv[i]);
            if (img.empty())
            {
                cout << "Can't read image '" << argv[i] << "'\n";
                return -1;
            }
            imgs.push_back(img);
        }
    }
    return 0;
}

编辑:我只是尝试从示例文件夹本身运行示例代码,它可以工作。如果我将 makefile 放在 opencv/samples/cpp 文件夹中,makefile 可以完美运行,没有任何错误,但是当我复制时不会 - 将其粘贴到另一个位置。

4

1 回答 1

2

该错误意味着链接器找不到您的main函数。即使stitch.cpp定义main(我假设),链接器也找不到它。原因尚不清楚,因为您构建 Makefile 的方式。我会做出这些改变:

  • 将 CXXFLAGS 和/或 CPPFLAGS 用于 C++,因为 CFLAGS 用于 C。
  • 在 make 中展开 pkg-config 输出,这样你就可以看到你的编译器被要求做什么。

您的 Makefile 将如下所示:

 CXXFLAGS = $(shell pkg-config --cflags opencv)
 LIBS = $(shell pkg-config --libs opencv)

 % : %.cpp
    g++ $(CXXFLAGS) -o $@ $^ $(LIBS)

我想通过这些更改,问题的实际根源将变得显而易见。

于 2016-07-30T23:02:10.760 回答