• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ tendrils类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中tendrils的典型用法代码示例。如果您正苦于以下问题:C++ tendrils类的具体用法?C++ tendrils怎么用?C++ tendrils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了tendrils类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: configure

 int
 configure(tendrils& params, tendrils& inputs, tendrils& outputs)
 {
   format_ = params.at("format");
   input_ = inputs.at("input");
   output_ = outputs.at("output");
 }
开发者ID:ethanrublee,项目名称:ecto_pcl,代码行数:7,代码来源:pcl_bridge.cpp


示例2: declare_params

 static void
 declare_params(tendrils& params)
 {
   object_recognition_core::db::bases::declare_params_impl(params);
   params.declare(&Detector::threshold_, "threshold", "Matching threshold, as a percentage", 90.0f);
   params.declare(&Detector::visualize_, "visualize", "If True, visualize the output.", false);
 }
开发者ID:vrabaud,项目名称:linemod,代码行数:7,代码来源:linemod_detect.cpp


示例3: declare_io

 static void
 declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
 {
   inputs.declare(&MatToPointCloudXYZRGBOrganized::points3d, "points", "The width by height by 3 channels (x, y and z)").required(true);
   inputs.declare(&MatToPointCloudXYZRGBOrganized::image, "image", "The rgb image.").required(true);
   outputs.declare(&MatToPointCloudXYZRGBOrganized::cloud_out, "point_cloud", "The XYZRGB organized point cloud");
 }
开发者ID:JimmyDaSilva,项目名称:reconstruction,代码行数:7,代码来源:MatToPointCloud.cpp


示例4: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
      inputs.declare(&DepthCleaner::image_in_, "image", "The depth map").required(true);

      outputs.declare(&DepthCleaner::image_out_, "image", "The cleaned up depth image");
    }
开发者ID:imclab,项目名称:ecto_opencv,代码行数:7,代码来源:Cleaner.cpp


示例5: declare_io

 static void
 declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
 {
   inputs.declare(&C::in1, "image1");
   inputs.declare(&C::in2, "image2");
   outputs.declare(&C::out, "out");
 }
开发者ID:ethanrublee,项目名称:ecto_opencv,代码行数:7,代码来源:ImageGen.cpp


示例6: declare_io

 static void
 declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
 {
   inputs.declare(&C::in_image, "image", "The input image, used as the base to draw on.");
   inputs.declare(&C::in_kpts, "keypoints", "The keypoints to draw.");
   outputs.declare(&C::out_image, "image", "The output image.");
 }
开发者ID:konolige,项目名称:ecto_opencv,代码行数:7,代码来源:DrawKeypoints.cpp


示例7: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
      inputs.declare(&ClusterDrawer::clusters2d_, "clusters2d", "For each table, a vector of 2d clusters.");
      inputs.declare(&ClusterDrawer::image_, "image", "The image to draw on.").required(true);

      outputs.declare(&ClusterDrawer::image_clusters_, "image", "The depth image with the convex hulls for the planes.");
    }
开发者ID:imclab,项目名称:ecto_opencv,代码行数:8,代码来源:ClusterDrawer.cpp


示例8: declare_params

 static void
 declare_params(tendrils& p)
 {
   p.declare(&C::n_iters, "n_iters", "number of ransac iterations", 100);
   p.declare(&C::reprojection_error, "reprojection_error", "error threshold", 8);
   p.declare(&C::min_inliers, "min_inliers", "minimum number of inliers", 25);
   p.declare(&C::inlier_thresh, "inlier_thresh", "The inlier threshold of pose found.", 30);
 }
开发者ID:konolige,项目名称:ecto_opencv,代码行数:8,代码来源:ransac_est.cpp


示例9: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
      inputs.declare(&ObjectRecognizer::clusters_, "clusters3d", "The object clusters.").required(true);
      inputs.declare(&ObjectRecognizer::table_coefficients_, "table_coefficients", "The coefficients of planar surfaces.").required(true);

      outputs.declare(&ObjectRecognizer::pose_results_, "pose_results", "The results of object recognition");
    }
开发者ID:bit-pirate,项目名称:tabletop,代码行数:8,代码来源:ObjectRecognizer.cpp


示例10: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
      inputs.declare(&Detector::color_, "image", "An rgb full frame image.");
      inputs.declare(&Detector::depth_, "depth", "The 16bit depth image.");

      outputs.declare(&Detector::pose_results_, "pose_results", "The results of object recognition");
    }
开发者ID:vrabaud,项目名称:linemod,代码行数:8,代码来源:linemod_detect.cpp


示例11: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
      inputs.declare(&PlaneDrawer::image_, "image", "The current gray frame.").required(true);
      inputs.declare(&PlaneDrawer::planes_, "planes", "The different found planes (a,b,c,d) of equation ax+by+cz+d=0.");
      inputs.declare(&PlaneDrawer::masks_, "masks", "The masks for each plane.");

      outputs.declare(&PlaneDrawer::image_clusters_, "image", "The depth image with the convex hulls for the planes.");
    }
开发者ID:jsbronder,项目名称:ecto_opencv,代码行数:9,代码来源:Plane.cpp


示例12: declare_params

    static void
    declare_params(tendrils& params)
    {
      params.declare(&MModTrainer::thresh_learn,"thresh_learn","The threshold"
                                              "for learning a new template",0.0); //Zero thresh_learn => learn every view
      params.declare(&MModTrainer::object_id,"object_id",
                                             "The object id, to learn.")
                                             .required(true);

    }
开发者ID:chenbk85,项目名称:mmod,代码行数:10,代码来源:MModTrainer.cpp


示例13: declare_io

  static void declare_io(const tendrils& params, tendrils& inputs,
                         tendrils& outputs) {
    inputs.declare(&ClusterConverter::clusters3d_, "clusters3d",
                   "The clusters on top of the table.").required(true);
    inputs.declare(&ClusterConverter::image_message_,
                   "image_message", "the image message to get the header").required(true);

    outputs.declare<sensor_msgs::PointCloud2ConstPtr>(
      "cluster_pc", "The PointCloud2 message of the top cluster");
  }
开发者ID:jiang0131,项目名称:tabletop,代码行数:10,代码来源:ClusterConverter.cpp


示例14: declare_io

    static void
    declare_io(const tendrils& p, tendrils& i, tendrils& o)
    {
        i.declare<std::vector<ObjectId> >("ids", "The matching object ids");

        i.declare(&MModTester::image_, "image", "An image. BGR image of type CV_8UC3").required(true);
        i.declare(&MModTester::depth_, "depth", "Depth image of type CV_16UC1").required(true);
        //      i.declare<cv::Mat> ("mask", "Object mask of type CV_8UC1 or CV_8UC3").required(false);
        o.declare(&MModTester::debug_image_, "debug_image", "Debug image.");
    }
开发者ID:vikiboy,项目名称:mmod,代码行数:10,代码来源:MModTester.cpp


示例15: declare_io

  static void declare_io(const tendrils& params, tendrils& inputs,
                         tendrils& outputs) {
    inputs.declare(&TableVisualizationMsgAssembler::clusters3d_, "clusters3d",
                   "The clusters on top of the table.").required(true);
    inputs.declare(&TableVisualizationMsgAssembler::image_message_,
                   "image_message", "the image message to get the header").required(true);

    outputs.declare<visualization_msgs::MarkerArrayConstPtr>(
      "marker_array_clusters", "The markers of the clusters");
  }
开发者ID:ArthurVal,项目名称:riddle_ork,代码行数:10,代码来源:TableVisualizationMsgAssembler.cpp


示例16: declare_io

 static void
 declare_io(const tendrils& params, tendrils& in, tendrils& out)
 {
   in.declare(&StereoCalibration::image_, "image", "An image to base the size of of.").required(true);
   in.declare(&StereoCalibration::object_pts_, "points_object", "The ideal object points.").required(true);
   in.declare(&StereoCalibration::pts_left_, "points_left", "The observed 2d points in the left camera.").required(
       true);
   in.declare(&StereoCalibration::pts_right_, "points_right", "The observed 2d points in the right camera.").required(
       true);
 }
开发者ID:Telpr2,项目名称:ecto_image_pipeline,代码行数:10,代码来源:StereoCalibration.cpp


示例17: process

 int process(const tendrils& in, const tendrils& out)
 {
     for (tendrils::const_iterator iter = in.begin(), end = in.end(); iter!=end; ++iter)
     {
         std::cout << iter->second->tick << " >>?>> " << tick << "\n";
         if (iter->second->tick != tick)
             abort();
     }
     ++tick;
     return ecto::OK;
 }
开发者ID:norro,项目名称:ecto,代码行数:11,代码来源:TickCheck.cpp


示例18: declare_io

    static void
    declare_io(const tendrils& params, tendrils& inputs, tendrils& outputs)
    {
    inputs.declare(&Trainer::json_db_, "json_db", "The DB parameters", "{}").required(
        true);
    inputs.declare(&Trainer::object_id_, "object_id",
        "The object id, to associate this model with.").required(true);

      outputs.declare(&Trainer::detector_, "detector", "The LINE-MOD detector");
      outputs.declare(&Trainer::Rs_, "Rs", "The matching rotations of the templates");
      outputs.declare(&Trainer::Ts_, "Ts", "The matching translations of the templates.");
    }
开发者ID:vrabaud,项目名称:linemod,代码行数:12,代码来源:linemod_train.cpp


示例19: declare_io

    static void
    declare_io(const tendrils& params, tendrils& i, tendrils& o)
    {
      //inputs coming off of the kinect.
      i.declare(&C::depth_, "depth", "The depth stream.").required(true);
      i.declare(&C::image_, "image", "The image stream.").required(true);
      i.declare(&C::focal_length_image_, "focal_length_image", "The focal length of the image stream.").required(true);
      i.declare(&C::focal_length_depth_, "focal_length_depth", "The focal length of the depth stream.").required(true);
      i.declare(&C::baseline_, "baseline", "The base line of the openni camera.").required(true);

      o.declare(&C::cam, "camera", "A pinhole camera model to convert.");
    }
开发者ID:straszheim,项目名称:image_pipeline,代码行数:12,代码来源:CameraFromOpenNI.cpp


示例20: declare_params

	/*! @brief declare parameters used by the detector
	 *
	 * This method defines the mapping between the python members loaded
	 * from the config file, and the members declared in this class. This
	 * is called once at initialization, and again in instances of
	 * dynamic reconfiguration
	 *
	 * @param params the parameters
	 */
	static void declare_params(tendrils& params)
	{
		params.declare(&PartsBasedDetectorCell::visualize_, "visualize",
				"Visualize results", false);
		params.declare(&PartsBasedDetectorCell::remove_planes_, "remove_planes",
				"The cell should remove planes from the scene before the cluster extraction", false);
		params.declare(&PartsBasedDetectorCell::model_file_, "model_file",
				"The path to the model file").required(true);
		params.declare(&PartsBasedDetectorCell::max_overlap_, "max_overlap",
				"The maximum overlap allowed between object detections", 0.1);
		params.declare(&PartsBasedDetectorCell::object_db_, "db",
				"The object db.", ObjectDb());
	}
开发者ID:biometrics,项目名称:PartsBasedDetector,代码行数:22,代码来源:detect.cpp



注:本文中的tendrils类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ tensor类代码示例发布时间:2022-05-31
下一篇:
C++ team类代码示例发布时间:2022-05-31
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap