Skip to content

Commit

Permalink
clarified cout
Browse files Browse the repository at this point in the history
  • Loading branch information
hn-88 authored May 17, 2020
1 parent 959bf4f commit 2cd7099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OCVvid2fulldome.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ int main(int argc,char *argv[])
update_map(vidlongi[i], vidlati[i], vidw[i], aspectratio[i], map_x[i], map_y[i]);
cv::convertMaps(map_x[i], map_y[i], dst_x[i], dst_y[i], CV_16SC2);
// supposed to make it faster to remap
std::cout<<"\r"<<"Vid"<<i<<" x:"<<vidlongi[i]<<" y:"<<vidlati[i]<<std::flush;;
std::cout<<"\r"<<"Process vid"<<i<<" x:"<<vidlongi[i]<<" y:"<<vidlati[i]<<std::flush;;
}

t_start = time(NULL);
Expand Down Expand Up @@ -572,7 +572,7 @@ int main(int argc,char *argv[])
update_map(vidlongi[i], vidlati[i], vidw[i], aspectratio[i], map_x[i], map_y[i]);
cv::convertMaps(map_x[i], map_y[i], dst_x[i], dst_y[i], CV_16SC2);
// supposed to make it faster to remap
std::cout<<"\r"<<"Vid"<<i<<" x:"<<vidlongi[i]<<" y:"<<vidlati[i]<<std::flush;;
std::cout<<"\r"<<"Process vid"<<i<<" x:"<<vidlongi[i]<<" y:"<<vidlati[i]<<std::flush;;

}
interactivemode = 0;
Expand Down

0 comments on commit 2cd7099

Please sign in to comment.