Commit 5bacf5c2 authored by Richard Torenvliet's avatar Richard Torenvliet

Remove unused / duplicate declaration

parent 735a5a32
...@@ -381,14 +381,13 @@ int main(int argc, char *argv[]) { ...@@ -381,14 +381,13 @@ int main(int argc, char *argv[]) {
int n_iter = 0; int n_iter = 0;
// load all annotation files into lists of landmarks
vector<core::LandmarkCollection<cv::Vec2f>> landmark_sublist;
while(!(key_frames.empty())) { while(!(key_frames.empty())) {
if (n_iter == 10) { if (n_iter == 10) {
break; break;
} }
// load all annotation files into lists of landmarks
vector<core::LandmarkCollection<cv::Vec2f>> landmark_sublist(landmark_list.begin() + n_iter, landmark_list.end()); vector<core::LandmarkCollection<cv::Vec2f>> landmark_sublist(landmark_list.begin() + n_iter, landmark_list.end());
std::tie(meshs, rendering_paramss) = fitting::fit_shape_and_pose_multi( std::tie(meshs, rendering_paramss) = fitting::fit_shape_and_pose_multi(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment