Skip to content
New issue

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

Correcting 'rd' images paths in prep_pmvs.sh. #56

Merged
merged 1 commit into from Oct 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Bundle2PMVS.cpp
Expand Up @@ -213,7 +213,8 @@ void WritePMVS(const char *output_path,
fclose(f);

int last_dot = images[i].rfind('.', images[i].length()-1);
std::string basename = images[i].substr(0, last_dot);
int last_slash = images[i].rfind('/', last_dot-1);
std::string basename = images[i].substr(last_slash + 1, last_dot - last_slash - 1);

fprintf(f_scr, "mv pmvs/%s.rd.jpg %s/visualize/%08d.jpg\n",
basename.c_str(), output_path, count);
Expand Down