Skip to content

Commit

Permalink
Fix variables assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-trinh committed Oct 26, 2023
1 parent f1b8f88 commit 7f239f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,9 +497,9 @@ bool run(const std::string &input_directory, bool opt_click_allowed, bool opt_di
std::map<std::string, std::vector<std::vector<double> > > mapOfModels;
std::map<std::string, unsigned int> mapOfW;
mapOfW["Camera1"] = I.getWidth();
mapOfW["Camera2"] = I.getHeight();
mapOfW["Camera2"] = I_depth.getWidth();
std::map<std::string, unsigned int> mapOfH;
mapOfH["Camera1"] = I_depth.getWidth();
mapOfH["Camera1"] = I.getHeight();
mapOfH["Camera2"] = I_depth.getHeight();
std::map<std::string, vpHomogeneousMatrix> mapOfcMos;
mapOfcMos["Camera1"] = cMo;
Expand Down

0 comments on commit 7f239f9

Please sign in to comment.