We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting this error Error using regexp The 'STRING' input must be either a char row vector, a cell array of char row vectors, or a string array.
Error in get_synched_frames (line 20) files = regexp(ls(sceneDir), '(\s+|\n)', 'split');
Error in demo_synched_projected_frames (line 11) frameList = get_synched_frames(sceneDir);
The text was updated successfully, but these errors were encountered:
Hi! Would you please tell me how you solve this if you had handled it?
Sorry, something went wrong.
I solved this issue simply by replacing regexp with the following code,
files = string({dir(sceneDir).name});
No branches or pull requests
I am getting this error
Error using regexp
The 'STRING' input must be either a char row vector, a cell array of char row vectors, or a string
array.
Error in get_synched_frames (line 20)
files = regexp(ls(sceneDir), '(\s+|\n)', 'split');
Error in demo_synched_projected_frames (line 11)
frameList = get_synched_frames(sceneDir);
The text was updated successfully, but these errors were encountered: