我需要帮助修复MATLAB问题,因为它说没有足够的输入参数

rur96b6h  于 2023-02-05  发布在  Matlab
关注(0)|答案(1)|浏览(226)

我正在尝试一个项目https://github.com/janstenum/GaitAnalysis-PoseEstimation,当我运行文档中提到的命令correctLegID_opensose.m时,我得到这个错误

Not enough input arguments.

Error in correctLegID_openpose (line 3)
file = sprintf('%s%s',output_name,'_openpose.mat');

Error in run (line 91)
evalin('caller', strcat(script, ';'));

我尝试使用以下命令正常运行命令
run("correctLegID_openpose.m")

hxzsmxv2

hxzsmxv21#

run()用于脚本,而不是用于带参数的函数。如果correctLegID_opensose.m在Matlab search path上,您可以直接调用它并提供缺少的输入参数:

output_name = 'filename';
correctLegID_openpose(output_name)

相关问题