/external/opencv3/modules/viz/src/vtk/ |
vtkCloudMatSink.h | 62 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
|
vtkCloudMatSource.h | 67 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);
|
vtkOBJWriter.cpp | 112 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)
|
vtkCloudMatSource.cpp | 158 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);
|
/external/opencv3/modules/viz/test/ |
tests_simple.cpp | 185 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/include/opencv2/viz/ |
types.hpp | 128 Mat texture, tcoords; member in class:cv::viz::Mesh
|