Skip to content

Commit

Permalink
Follow-up typos
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz committed Feb 15, 2018
1 parent 19c56e1 commit b3085a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 2d/include/pcl/2d/impl/morphology.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ pcl::Morphology<PointT>::subtractionBinary (
const pcl::PointCloud<PointT> &input1,
const pcl::PointCloud<PointT> &input2)
{
const int height = (input1.height < input2.hieght) ? input1.height : input2.height;
const int height = (input1.height < input2.height) ? input1.height : input2.height;
const int width = (input1.width < input2.width) ? input1.width : input2.width;
output.width = width;
output.height = height;
Expand All @@ -299,7 +299,7 @@ pcl::Morphology<PointT>::unionBinary (
const pcl::PointCloud<PointT> &input1,
const pcl::PointCloud<PointT> &input2)
{
const int height = (input1.height < input2.hieght) ? input1.height : input2.height;
const int height = (input1.height < input2.height) ? input1.height : input2.height;
const int width = (input1.width < input2.width) ? input1.width : input2.width;
output.width = width;
output.height = height;
Expand Down
2 changes: 1 addition & 1 deletion simulation/src/range_likelihood.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ costFunction4(float ref_val,float depth_val)
float proportion = 0.999f;
float lhood = proportion + (1-proportion)*(top/bottom);

// safety fix thats seems to be required due to opengl ayschronizate
// safety fix that seems to be required due to opengl asyschronizate
// ask hordur about this
if (bottom == 0)
{
Expand Down

0 comments on commit b3085a3

Please sign in to comment.