我正在使用一个Matlab代码(不是我开发的),它调用与mex文件相关的函数(它们具有相同的名词)。但是,我收到一个错误,指出函数未定义。
我应该在调用此函数之前执行指定的命令吗? (我正在使用MAC OS X和Matlab R 2016a)。
这是代码,错误在调用函数fastmarchmex的行(我记得fastmarchmex.mexw64和32在当前文件夹中):
rootdir = fileparts(mfilename('fullpath'));
addpath(fullfile(rootdir,'util'));
addpath(fullfile(rootdir,'sihks'));
load(fullfile(rootdir,'shapes','0001.scale.1.mat'),'shape'
%%-------------------------------------------------------------------
%% SIHKS signature
%%-------------------------------------------------------------------
fprintf('preprocessing');
shape.idxs = compute_vertex_face_ring(shape.TRIV');
ndesc = 5;
[desc,shape] = signature(shape,'sihks');
fprintf('.');
%%-------------------------------------------------------------------
%% ISC settings
%%-------------------------------------------------------------------
rad = 10; % radius used for descriptor construction
nbinsr = 5; % number of rings
nbinsth = 16; % number of rays
rr = [1:nbinsr]/nbinsr*rad;
th = [1:nbinsth]/nbinsth*2*pi;
fhs = 2; %% factor determining hardness of scale
quantization
fha = .01; %% factors determining hardness of angle
quantization
**shape.f_dns = fastmarchmex('init', int32(shape.TRIV-1),
double(shape.X(:)), double(shape.Y(:)), double(shape.Z(:)));**
vertex = 701;
shape =
fast_marching(vertex,shape,'vertex',0,1,shape.f_dns);
[in_ray,in_ring,shp,geod,directions]= get_net(shape,vertex,'scales',
[0,rr],'N_rays',length(th),'fhs',fhs,'fha',fha);
[dec_net] = get_descriptor_from_net(in_ray,in_ring,desc,shape.Av);
fastmarchmex('deinit', shape.f_dns);
%% end of code, visualization of results
a = -82.5000;
v = 18;
dind = 1;
figure(1); clf; show_shape(shape,desc(:,dind));
hold on,scatter3(geod{1}(1,1),geod{1}(2,1),geod{1}
(3,1),'filled','SizeData',150,'Cdata',[1,0,0])
for k=[1:length(geod)]
hold on;
h = plot3(geod{k}(1,:),geod{k}(2,:),geod{k}(3,:));
set(h,'Color',[0 0 0],'LineWidth',2);
end
for r = [1:length(rr)]
plot_ring(shape,rr(r));
end
title('Net around vertex')
view(-82.50,18)
figure(2); clf; plot_polarhist(squeeze(desc_net(dind,:,:)),rr,th,0);
答案 0 :(得分:0)
MATLAB R13 and later, which support Mac OS X, use the .mexmac extension on the Mac. 因此,如果您有Windows版本
,则应重新编译Mac的Mex文件