Home
last modified time | relevance | path

Searched refs:tcoords (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/viz/src/vtk/
DvtkOBJWriter.cpp112 vtkSmartPointer<vtkDataArray> tcoords = input->GetPointData()->GetTCoords(); in WriteData() local
113 if (tcoords) in WriteData()
115 for (int i = 0; i < tcoords->GetNumberOfTuples(); i++) in WriteData()
118 tcoords->GetTuple(i, p.val); in WriteData()
149 if (tcoords) in WriteData()
174 if (tcoords) in WriteData()
181 if (tcoords) in WriteData()
213 if (tcoords) in WriteData()
227 if (tcoords) in WriteData()
DvtkCloudMatSource.h67 …orCloudNormalsTCoords(InputArray cloud, InputArray colors, InputArray normals, InputArray tcoords);
79 vtkSmartPointer<vtkDataArray> tcoords; variable
91 void filterNanTCoordsCopy(const Mat& tcoords, const Mat& mask, int total);
DvtkCloudMatSource.cpp176 if (tcoords) in RequestData()
177 output->GetPointData()->SetTCoords(tcoords); in RequestData()
270 tcoords = vtkSmartPointer< typename VtkDepthTraits<_Tn>::array_type >::New(); in filterNanTCoordsCopy()
271 tcoords->SetName("TextureCoordinates"); in filterNanTCoordsCopy()
272 tcoords->SetNumberOfComponents(2); in filterNanTCoordsCopy()
273 tcoords->SetNumberOfTuples(total); in filterNanTCoordsCopy()
284 tcoords->SetTuple(pos++, srow->val); in filterNanTCoordsCopy()
DvtkCloudMatSink.cpp60 tcoords = _tcoords; in SetOutput()
133 if (tcoords.needed() && coords_data) in WriteData()
145 buffer.convertTo(tcoords, vtktype == VTK_FLOAT ? CV_32F : CV_64F); in WriteData()
149 tcoords.release(); in WriteData()
DvtkCloudMatSink.h62 … OutputArray colors = noArray(), OutputArray normals = noArray(), OutputArray tcoords = noArray());
76 _OutputArray cloud, colors, normals, tcoords; variable
/external/opencv3/modules/viz/test/
Dtests_simple.cpp185 std::vector<Vec2d> tcoords; in TEST() local
192 tcoords.push_back(Vec2d(0.0, i/64.0)); in TEST()
193 tcoords.push_back(Vec2d(1.0, i/64.0)); in TEST()
204 mesh.tcoords = Mat(tcoords, true).reshape(2, 1); in TEST()
/external/opencv3/modules/viz/src/
Dtypes.cpp71 sink->SetOutput(mesh.cloud, mesh.colors, mesh.normals, mesh.tcoords); in load()
Dclouds.cpp366 source->SetColorCloudNormalsTCoords(mesh.cloud, mesh.colors, mesh.normals, mesh.tcoords); in WMesh()
/external/opencv3/modules/viz/include/opencv2/viz/
Dtypes.hpp128 Mat texture, tcoords; member in cv::viz::Mesh