-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Disappearing cloud from Selection #814
Fix Disappearing cloud from Selection #814
Conversation
@jpapon Could you please have a look? |
The issue was discussed here. |
This looks good to me - simple fix to the problem. |
@@ -72,8 +76,12 @@ pcl::cloud_composer::MergeSelection::performAction (ConstItemList input_data, Po | |||
filter.filter (*selected_points); | |||
|
|||
qDebug () << "Original minus indices is "<<original_minus_indices->width; | |||
Eigen::Vector4f source_origin = input_cloud_item->data (ItemDataRole::ORIGIN).value<Eigen::Vector4f> (); | |||
Eigen::Quaternionf source_orientation = input_cloud_item->data (ItemDataRole::ORIENTATION).value<Eigen::Quaternionf> (); | |||
if(!pose_found) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a space here.
@frankpablo Could you please fix a couple of minor things so that we can merge your patch? |
OK, that should do it. |
I am afraid space is still missing in |
Sorry, quite new to this, I'm following the squash instructions but the "git rebase -i master" command is not displaying the list of commits to squash. What am I doing wrong? |
Did you checkout your feature branch? |
The new cloud from selection is created with the pose information of the original cloud. If more than one original clouds are selected, the pose of the first one is used. minor style corrections style correction
Great! |
Fix Disappearing cloud from Selection
I thought I had. I repeated it and it worked this time. |
The new cloud from selection is created with the pose information of
the original cloud. If more than one original clouds are selected,
the pose of the first one is used.