Home
last modified time | relevance | path

Searched refs:tex_mesh (Results 1 – 8 of 8) sorted by relevance

/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/gpu/kinfu_large_scale/tools/
H A Dstandalone_texture_mapping.cpp59 if (tex_mesh.cloud.data.empty ()) in saveOBJFile()
78 int nr_points = tex_mesh.cloud.width * tex_mesh.cloud.height; in saveOBJFile()
82 int nr_meshes = tex_mesh.tex_polygons.size (); in saveOBJFile()
86 nr_faces += tex_mesh.tex_polygons[m].size (); in saveOBJFile()
119 …memcpy (&value, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[d].offset], sizeof (fl… in saveOBJFile()
147 tex_mesh.cloud.fields[d].name == "normal_z")) in saveOBJFile()
156 …memcpy (&value, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[d].offset], sizeof (fl… in saveOBJFile()
174 if(tex_mesh.tex_coordinates.empty ()) in saveOBJFile()
193 f_idx += tex_mesh.tex_polygons[m-1].size (); in saveOBJFile()
195 if(!tex_mesh.tex_materials.empty ()) in saveOBJFile()
[all …]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/impl/
H A Dtexture_mapping.hpp148 int nr_points = tex_mesh.cloud.width * tex_mesh.cloud.height; in mapTexture2Mesh()
173 …memcpy (&x, &tex_mesh.cloud.data[idx * point_size + tex_mesh.cloud.fields[0].offset], sizeof(float… in mapTexture2Mesh()
174 …memcpy (&y, &tex_mesh.cloud.data[idx * point_size + tex_mesh.cloud.fields[1].offset], sizeof(float… in mapTexture2Mesh()
175 …memcpy (&z, &tex_mesh.cloud.data[idx * point_size + tex_mesh.cloud.fields[2].offset], sizeof(float… in mapTexture2Mesh()
202 int nr_points = tex_mesh.cloud.width * tex_mesh.cloud.height; in mapTexture2MeshUV()
215 …memcpy (&x_, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[0].offset], sizeof(float)… in mapTexture2MeshUV()
216 …memcpy (&y_, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[1].offset], sizeof(float)… in mapTexture2MeshUV()
217 …memcpy (&z_, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[2].offset], sizeof(float)… in mapTexture2MeshUV()
467 cleaned_mesh = tex_mesh; in removeOccludedPoints()
549 sorted_mesh = tex_mesh; in sortFacesByCamera()
[all …]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/io/src/
H A Dobj_io.cpp974 if (tex_mesh.cloud.data.empty ()) in saveOBJFile()
992 unsigned nr_points = tex_mesh.cloud.width * tex_mesh.cloud.height; in saveOBJFile()
1022 tex_mesh.cloud.fields[d].name == "x" || in saveOBJFile()
1023 tex_mesh.cloud.fields[d].name == "y" || in saveOBJFile()
1024 tex_mesh.cloud.fields[d].name == "z")) in saveOBJFile()
1033 …memcpy (&value, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[d].offset], sizeof (fl… in saveOBJFile()
1059 tex_mesh.cloud.fields[d].name == "normal_x" || in saveOBJFile()
1061 tex_mesh.cloud.fields[d].name == "normal_z")) in saveOBJFile()
1070 …memcpy (&value, &tex_mesh.cloud.data[i * point_size + tex_mesh.cloud.fields[d].offset], sizeof (fl… in saveOBJFile()
1143 …m_fs << "Ka "<< tex_mesh.tex_materials[m].tex_Ka.r << " " << tex_mesh.tex_materials[m].tex_Ka.g <<… in saveOBJFile()
[all …]
H A Dauto_io.cpp135 pcl::io::save (const std::string &file_name, const pcl::TextureMesh &tex_mesh, unsigned precision) in save() argument
141 result = pcl::io::saveOBJFile (file_name, tex_mesh, precision); in save()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/
H A Dtexture_mapping.h173 mapTexture2Mesh (pcl::TextureMesh &tex_mesh);
179 mapTexture2MeshUV (pcl::TextureMesh &tex_mesh);
188 mapMultipleTexturesToMeshUV (pcl::TextureMesh &tex_mesh,
268 …removeOccludedPoints (const pcl::TextureMesh &tex_mesh, pcl::TextureMesh &cleaned_mesh, const doub…
277 …removeOccludedPoints (const pcl::TextureMesh &tex_mesh, PointCloudPtr &filtered_cloud, const doubl…
289 sortFacesByCamera (pcl::TextureMesh &tex_mesh,
322 showOcclusions (pcl::TextureMesh &tex_mesh,
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/test/surface/
H A Dtest_gp3.cpp189 TextureMesh tex_mesh; in TEST() local
190 tex_mesh.cloud = triangles.cloud; in TEST()
193 tex_mesh.tex_polygons.push_back(triangles.polygons); in TEST()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/io/include/pcl/io/
H A Dauto_io.h106 save (const std::string &file_name, const pcl::TextureMesh &tex_mesh, unsigned precision = 5);
H A Dobj_io.h331 const pcl::TextureMesh &tex_mesh,