Skip to content

Commit

Permalink
Make namespace qualification consistent
Browse files Browse the repository at this point in the history
In file numeric.hpp, there is
full qualification, but harris.hpp
didn't have full qualification,
thus full qualification is added to
harris.hpp
  • Loading branch information
simmplecoder committed Jul 25, 2019
1 parent ddcc52b commit a75df96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/boost/gil/image_processing/harris.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ namespace boost { namespace gil {
/// constant against edges (usually in range 0.04 to 0.06).
/// harris_response is an out parameter that will contain the Harris responses.
void compute_harris_responses(
gil::gray32f_view_t m11,
gil::gray32f_view_t m12_21,
gil::gray32f_view_t m22,
gil::gray32f_view_t weights,
boost::gil::gray32f_view_t m11,
boost::gil::gray32f_view_t m12_21,
boost::gil::gray32f_view_t m22,
boost::gil::gray32f_view_t weights,
float k,
gil::gray32f_view_t harris_response)
boost::gil::gray32f_view_t harris_response)
{
if (m11.dimensions() != m12_21.dimensions() || m12_21.dimensions() != m22.dimensions()) {
throw std::invalid_argument("m prefixed arguments must represent"
Expand Down

0 comments on commit a75df96

Please sign in to comment.