我正在尝试一个项目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")
1条答案
按热度按时间hxzsmxv21#
run()
用于脚本,而不是用于带参数的函数。如果correctLegID_opensose.m在Matlab search path上,您可以直接调用它并提供缺少的输入参数: