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

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

Completed in 325 milliseconds