X-Git-Url: https://defiant.homedns.org/gitweb/?p=ros_wild_thumper.git;a=blobdiff_plain;f=src%2Fpath_following.cpp;h=c06a084c907cd9ccd957a42b3f00a4aec7bb286d;hp=7bbd7efcabf63c1e43174e0ab4a64c5c215d5c6c;hb=2e1412681f31d74d078d532915017a22281bbcc1;hpb=eef02300bd4b99a11e6a1756f7b8d4e25c6c0908 diff --git a/src/path_following.cpp b/src/path_following.cpp index 7bbd7ef..c06a084 100644 --- a/src/path_following.cpp +++ b/src/path_following.cpp @@ -43,7 +43,7 @@ class PathFollower PathFollower() : it(nh) { ros::NodeHandle pnh("~"); - FileStorage fs(ros::package::getPath("wild_thumper") + "/cfg/transformation_matrix.yml", FileStorage::READ); + FileStorage fs(ros::package::getPath("wild_thumper") + "/config/transformation_matrix.yml", FileStorage::READ); dynamic_reconfigure::Server::CallbackType f; fs["transformation_matrix"] >> transformation_matrix; @@ -78,7 +78,7 @@ class PathFollower int pathfinder(cv::Mat &frame, float &r, float &phi) { - cv::vector lines; + std::vector lines; cv::warpPerspective(frame, frame, transformation_matrix, frame.size(), INTER_LINEAR); Mat roi(frame, Rect(roi_x, roi_y, roi_width, roi_height));