Skip to content

Port to OpenCV 4 #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: indigo-devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ loadMapFromFile(nav_msgs::GetMap::Response* resp,
fname + std::string("\"");
throw std::runtime_error(errmsg);
}
cvtColor(imgColor, img, CV_BGR2GRAY);
cvtColor(imgColor, img, cv::COLOR_BGR2GRAY);

// Copy the image data into the map structure
resp->map.info.width = img.rows;
Expand All @@ -113,7 +113,7 @@ loadMapFromFile(nav_msgs::GetMap::Response* resp,
for (i = 0; i < resp->map.info.width; i++)
{
// Compute mean of RGB for this pixel
color_avg = (double)(img.at<uint8_t>(i, j));
color_avg = static_cast<double>(img.at<uint8_t>(i, j));

// If negate is true, we consider blacker pixels free, and whiter
// pixels free. Otherwise, it's vice versa.
Expand Down