0

我正在尝试在 MATLAB 中实现“基于 GrabCut 的对象分割技术”方法。为了最小化马尔可夫随机场能量函数,我使用这里提供的标准 Max-flow/min-cut 算法:http: //vision.csd.uwo.ca/code/

问题:当我尝试创建一个mex文件来调用MATLAB中的Graph创建和最小化函数时,我得到以下错误:

未定义符号:“Graph::Graph(int, int, void ( )(char ))”,引用自:GraphTest.o 中的_mexFunction

ld:未找到符号 collect2:ld 返回 1 个退出状态

mex:“GraphTest.mexmaci64”的链接失败。

我的代码真的很简单,只是复制了README文件中提到的部分代码如下:

#include "mex.h"
#include <stdio.h>
#include <math.h>
#include "graph.h"

void mexFunction(int nlhs, mxArray *plhs[],int nrhs, const mxArray *prhs[]) 
{    
    typedef Graph<int, int, int> GraphType;
  GraphType *g = new GraphType(/*estimated # of nodes*/ 2, /*estimated # of edges*/1); 
}

如果以前使用过此软件包或遇到过类似错误的任何人都可以提供有关该问题的一些见解,我将不胜感激。

提前致谢!

4

1 回答 1

2

我想你是用 Matlab 编译的?

尝试:

mex GraphTest.cpp 图.cpp

我假设您的 mex 网关文件是 GraphTest.cpp。您可以将任何依赖项标记到末尾。这对于简单的项目相当有效。当它变大时,您将需要切换到具有依赖关系的实际构建系统。我更喜欢 CMake。

于 2011-05-02T13:00:45.097 回答