Skip to content

Commit

Permalink
Merge pull request #2591 from bbeco/fix_comment
Browse files Browse the repository at this point in the history
fix comment
  • Loading branch information
taketwo authored Nov 5, 2018
2 parents 10b6464 + 7a0d8d5 commit de5c009
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/include/pcl/point_types_conversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@

namespace pcl
{
// r,g,b, i values are from 0 to 1
// r,g,b, i values are from 0 to 255
// h = [0,360]
// s, v values are from 0 to 1
// if s = 0 > h = -1 (undefined)
// if s = 0 => h = 0

/** \brief Convert a XYZRGB point type to a XYZI
* \param[in] in the input XYZRGB point
Expand Down Expand Up @@ -153,7 +153,7 @@ namespace pcl
if (max == 0) // division by zero
{
out.s = 0.f;
out.h = 0.f; // h = -1.f;
out.h = 0.f;
return;
}

Expand Down

0 comments on commit de5c009

Please sign in to comment.