Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
gishi523 committed Apr 17, 2018
1 parent 0ab7462 commit 3918e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stixel_world.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ void StixelWorld::compute(const cv::Mat& disparity, std::vector<Stixel>& stixels
camera.tilt = atanf((line.a * camera.v0 + line.b) / (camera.fu * line.a));
camera.height = camera.baseline * cosf(camera.tilt) / line.a;
}
else if (param_.roadEstimation == StixelWorld::ROAD_ESTIMATION_CAMERA)
else if (param_.roadEstimation == ROAD_ESTIMATION_CAMERA)
{
line = calcRoadModelCamera(camera);
}
Expand Down

0 comments on commit 3918e23

Please sign in to comment.