(1) Как я могу измерить расстояние между дверью и камерой.
Пример переписи PCL, см. Пример pcl.Это даст вам топор + на + cz + d = 0 Фактическое перпендикулярное расстояние должно быть d.
(2) Как я могу измеритьвысота и ширина двери.
Пример согласованного результата, чтобы получить лайнер и затем определить направление цены, используя PCA или любые другие необходимые средства.Основываясь на доминирующем направлении, измеряйте максимальное и минимальное только доминирующее направление.Это должно дать вам рост.Сделайте то же самое для ширины
(3) Как добавить обнаруженную дверь в rviz 3d.То же самое можно обнаружить и опубликовать
Ниже приведен краткий пример или как вы это делаете
ros::Publisher pub;
float deg2rad(float alpha)
{
return (alpha * 0.017453293f);
}
void ransac(pcl::PointCloud<pcl::PointXYZRGB>::Ptr input, pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_projected)
{
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZRGB>);
*cloud = *input;
pcl::ModelCoefficients::Ptr floor_coefficients(new pcl::ModelCoefficients());
pcl::PointIndices::Ptr floor_indices(new pcl::PointIndices());
pcl::SACSegmentation<pcl::PointXYZRGB> floor_finder;
floor_finder.setOptimizeCoefficients(true);
floor_finder.setModelType(pcl::SACMODEL_PARALLEL_PLANE);
// floor_finder.setModelType (SACMODEL_PLANE);
floor_finder.setMethodType(pcl::SAC_RANSAC);
floor_finder.setMaxIterations(300);
floor_finder.setAxis(Eigen::Vector3f(0, 0, 1));
floor_finder.setDistanceThreshold(0.08);
floor_finder.setEpsAngle(deg2rad(5));
floor_finder.setInputCloud(boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB> >(*cloud));
floor_finder.segment(*floor_indices, *floor_coefficients);
if (floor_indices->indices.size() > 0)
{
// Extract the floor plane inliers
pcl::PointCloud<pcl::PointXYZRGB>::Ptr floor_points(new pcl::PointCloud<pcl::PointXYZRGB>);
pcl::ExtractIndices<pcl::PointXYZRGB> extractor;
extractor.setInputCloud(boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB> >(*cloud));
extractor.setIndices(floor_indices);
extractor.filter(*floor_points);
extractor.setNegative(true);
extractor.filter(*cloud);
// Project the floor inliers
pcl::ProjectInliers<pcl::PointXYZRGB> proj;
proj.setModelType(pcl::SACMODEL_PLANE);
proj.setInputCloud(floor_points);
proj.setModelCoefficients(floor_coefficients);
proj.filter(*cloud_projected);
floor_points->header.frame_id = "camera_link";
floor_points->header.stamp = ros::Time::now().toNSec();
}
}
void passthrough_z(const sensor_msgs::PointCloud2ConstPtr& input, pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_passthrough)
{
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZRGB>);
pcl::fromROSMsg(*input, *cloud);
// Create the filtering object
pcl::PassThrough<pcl::PointXYZRGB> pass;
pass.setInputCloud (boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB> >(*cloud));
pass.setFilterFieldName ("z");
pass.setFilterLimits (0.0, 6.0);
pass.filter (*cloud_passthrough);
}
void passthrough_y(pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_passthrough)
{
// Create the filtering object
pcl::PassThrough<pcl::PointXYZRGB> pass;
pass.setInputCloud (boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB> >(*cloud_passthrough));
pass.setFilterFieldName ("y");
pass.setFilterLimits (0.0, 5.0);
pass.filter (*cloud_passthrough);
}
void passthrough_x(pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_passthrough)
{
// Create the filtering object
pcl::PassThrough<pcl::PointXYZRGB> pass;
pass.setInputCloud (boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB> >(*cloud_passthrough));
pass.setFilterFieldName ("x");
pass.setFilterLimits (-2.0, 2.0);
pass.filter (*cloud_passthrough);
}
void cloud_cb (const sensor_msgs::PointCloud2ConstPtr& input)
{
// Do data processing here...
// run pass through filter to shrink point cloud
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_passthrough(new pcl::PointCloud<pcl::PointXYZRGB>);
passthrough_z(input, cloud_passthrough);
passthrough_y(cloud_passthrough);
passthrough_x(cloud_passthrough);
// run ransac to find floor
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud_projected(new pcl::PointCloud<pcl::PointXYZRGB>);
ransac(cloud_passthrough, cloud_projected);
pub.publish(*cloud_projected);
}
int main (int argc, char** argv)
{
// Initialize ROS
ros::init (argc, argv, "pcl_node");
ros::NodeHandle nh;
// Create a ROS subscriber for the input point cloud
ros::Subscriber sub = nh.subscribe ("camera/depth_registered/points", 1, cloud_cb);
// Create a ROS publisher for the output point cloud
pub = nh.advertise<sensor_msgs::PointCloud2> ("output", 1);
// Spin
ros::spin ();
}