Searched refs:point_cloud (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/tools/3D-Reconstruction/sketch_3D_reconstruction/ |
D | Scene.pde | 2 PointCloud point_cloud; 10 Scene(Camera camera, PointCloud point_cloud, MotionField motion_field) { 11 this.point_cloud = point_cloud; 16 PVector p1 = point_cloud.getPosition(v * width + u); 17 PVector p2 = point_cloud.getPosition(v * width + u + 1); 18 PVector p3 = point_cloud.getPosition((v + 1) * width + u + 1); 19 PVector p4 = point_cloud.getPosition((v + 1) * width + u); 20 color c1 = point_cloud.getColor(v * width + u); 21 color c2 = point_cloud.getColor(v * width + u + 1); 22 color c3 = point_cloud.getColor((v + 1) * width + u + 1); [all …]
|
D | Util.pde | 15 void savePointCloud(PointCloud point_cloud, String file_name) { 16 String[] positions = new String[point_cloud.points.size()]; 17 String[] colors = new String[point_cloud.points.size()]; 18 for (int i = 0; i < point_cloud.points.size(); i++) { 19 PVector point = point_cloud.getPosition(i); 20 color point_color = point_cloud.getColor(i);
|
D | PointCloud.pde | 121 void merge(PointCloud point_cloud) { 122 for (int i = 0; i < point_cloud.size(); i++) { 123 points.add(point_cloud.getPosition(i)); 124 point_colors.append(point_cloud.getColor(i)); 126 cloud_mass = PVector.add(cloud_mass, point_cloud.cloud_mass);
|
D | sketch_3D_reconstruction.pde | 16 PointCloud point_cloud = new PointCloud(); 36 point_cloud.generate(rgb, depth, trans); 43 scene = new Scene(camera, point_cloud, motion_field);
|
D | MotionField.pde | 9 void update(Camera last_cam, Camera current_cam, PointCloud point_cloud, 17 for (int i = 0; i < point_cloud.size(); i++) { 18 PVector p = point_cloud.getPosition(i);
|
/external/dynamic_depth/internal/dynamic_depth/ |
D | point_cloud.cc | 52 std::unique_ptr<PointCloud> point_cloud(new PointCloud()); in FromData() local 53 point_cloud->points_ = points; in FromData() 54 point_cloud->metric_ = metric; in FromData() 55 return point_cloud; in FromData() 67 std::unique_ptr<PointCloud> point_cloud(new PointCloud()); in FromDeserializer() local 68 if (!point_cloud->ParseFields(*deserializer)) { in FromDeserializer() 71 return point_cloud; in FromDeserializer()
|
D | camera.cc | 73 std::unique_ptr<PointCloud> point_cloud = in ParseFields() local 87 params->point_cloud = std::move(point_cloud); in ParseFields() 124 if (params_->point_cloud) { in GetNamespaces() 125 params_->point_cloud->GetNamespaces(ns_name_href_map); in GetNamespaces() 181 return params_->point_cloud.get(); in GetPointCloud() 250 if (params_->point_cloud != nullptr) { in Serialize() 254 if (!params_->point_cloud->Serialize(point_cloud_serializer.get())) { in Serialize()
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | camera.h | 36 std::unique_ptr<PointCloud> point_cloud; member 46 point_cloud(nullptr), in CameraParams() 59 point_cloud.get() == other.point_cloud.get() &&
|
/external/skia/platform_tools/libraries/include/ |
D | arcore_c_api.h | 1524 const ArPointCloud *point_cloud, 1541 const ArPointCloud *point_cloud, 1547 const ArPointCloud *point_cloud, 1554 void ArPointCloud_release(ArPointCloud *point_cloud);
|
/external/skqp/platform_tools/libraries/include/ |
D | arcore_c_api.h | 1524 const ArPointCloud *point_cloud, 1541 const ArPointCloud *point_cloud, 1547 const ArPointCloud *point_cloud, 1554 void ArPointCloud_release(ArPointCloud *point_cloud);
|