Skip to content

Commit

Permalink
Merge pull request #1264 from s-trinh/fix_testGenericTracker_variable…
Browse files Browse the repository at this point in the history
…_assignment

Fix variables assignment
  • Loading branch information
fspindle authored Oct 27, 2023
2 parents c64c5b2 + 7f239f9 commit 10dbf0c
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 10dbf0c

Please sign in to comment.