当前位置: 首页>>代码示例>>C++>>正文


C++ tendrils类代码示例

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


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


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