Skip to content

Commit

Permalink
Merge pull request #1066 from VictorLamoine/master
Browse files Browse the repository at this point in the history
Fix grabSingleCloud bug
  • Loading branch information
jspricke committed Jan 6, 2015
2 parents 14ce14d + 59d13b6 commit 92b5f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/src/ensenso_grabber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ pcl::EnsensoGrabber::grabSingleCloud (pcl::PointCloud<pcl::PointXYZ> &cloud)
double timestamp;
std::vector<float> pointMap;
int width, height;
camera_[itmImages][itmRaw].getBinaryDataInfo (0, 0, 0, 0, 0, &timestamp); // Get raw image timestamp
camera_[itmImages][itmRaw][itmLeft].getBinaryDataInfo (0, 0, 0, 0, 0, &timestamp); // Get raw image timestamp
camera_[itmImages][itmPointMap].getBinaryDataInfo (&width, &height, 0, 0, 0, 0);
camera_[itmImages][itmPointMap].getBinaryData (pointMap, 0);

Expand Down

0 comments on commit 92b5f7f

Please sign in to comment.