1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPLYReader.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkPLYReader.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
#include "vtkFloatArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPLY.h"
#include "vtkPolyData.h"
#include "vtkSmartPointer.h"
#include <cctype>
#include <cstddef>
vtkStandardNewMacro(vtkPLYReader);
// Construct object with merging set to true.
vtkPLYReader::vtkPLYReader()
{
this->FileName = NULL;
this->SetNumberOfInputPorts(0);
}
vtkPLYReader::~vtkPLYReader()
{
delete [] this->FileName;
}
typedef struct _plyVertex {
float x[3]; // the usual 3-space position of a vertex
float tex[2];
float normal[3];
unsigned char red;
unsigned char green;
unsigned char blue;
} plyVertex;
typedef struct _plyFace {
unsigned char intensity; // optional face attributes
unsigned char red;
unsigned char green;
unsigned char blue;
unsigned char nverts; // number of vertex indices in list
int *verts; // vertex index list
} plyFace;
int vtkPLYReader::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **vtkNotUsed(inputVector),
vtkInformationVector *outputVector)
{
// get the info object
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the ouptut
vtkPolyData *output = vtkPolyData::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
PlyProperty vertProps[] = {
{"x", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,x)),
0, 0, 0, 0},
{"y", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,x)+sizeof(float)),
0, 0, 0, 0},
{"z", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,x)+sizeof(float)+sizeof(float)),
0, 0, 0, 0},
{"u", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,tex)),
0, 0, 0, 0},
{"v", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,tex)+sizeof(float)),
0, 0, 0, 0},
{"nx", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,normal)),
0, 0, 0, 0},
{"ny", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,normal)+sizeof(float)),
0, 0, 0, 0},
{"nz", PLY_FLOAT, PLY_FLOAT, static_cast<int>(offsetof(plyVertex,normal)+2*sizeof(float)),
0, 0, 0, 0},
{"red", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyVertex,red)), 0, 0, 0, 0},
{"green", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyVertex,green)), 0, 0, 0, 0},
{"blue", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyVertex,blue)), 0, 0, 0, 0},
};
PlyProperty faceProps[] = {
{"vertex_indices", PLY_INT, PLY_INT,
static_cast<int>(offsetof(plyFace,verts)),
1, PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyFace,nverts))},
{"intensity", PLY_UCHAR, PLY_UCHAR,
static_cast<int>(offsetof(plyFace,intensity)), 0, 0, 0, 0},
{"red", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyFace,red)), 0, 0, 0, 0},
{"green", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyFace,green)), 0, 0, 0, 0},
{"blue", PLY_UCHAR, PLY_UCHAR, static_cast<int>(offsetof(plyFace,blue)), 0, 0, 0, 0},
};
if (!this->FileName)
{
vtkErrorMacro(<<"A File Name must be specified.");
return 0;
}
// open a PLY file for reading
PlyFile *ply;
int nelems, fileType, numElems, nprops;
char **elist, *elemName;
float version;
if ( !(ply = vtkPLY::ply_open_for_reading(this->FileName, &nelems, &elist,
&fileType, &version)) )
{
vtkWarningMacro(<<"Could not open PLY file");
return 0;
}
// Check to make sure that we can read geometry
PlyElement *elem;
int index;
if ( (elem = vtkPLY::find_element (ply, "vertex")) == NULL ||
vtkPLY::find_property (elem, "x", &index) == NULL ||
vtkPLY::find_property (elem, "y", &index) == NULL ||
vtkPLY::find_property (elem, "z", &index) == NULL ||
(elem = vtkPLY::find_element (ply, "face")) == NULL ||
vtkPLY::find_property (elem, "vertex_indices", &index) == NULL )
{
vtkErrorMacro(<<"Cannot read geometry");
vtkPLY::ply_close (ply);
}
// Check for optional attribute data. We can handle intensity; and the
// triplet red, green, blue.
bool intensityAvailable = false;
vtkSmartPointer<vtkUnsignedCharArray> intensity = NULL;
if ( (elem = vtkPLY::find_element (ply, "face")) != NULL &&
vtkPLY::find_property (elem, "intensity", &index) != NULL )
{
intensity = vtkSmartPointer<vtkUnsignedCharArray>::New();
intensity->SetName("intensity");
intensityAvailable = true;
output->GetCellData()->AddArray(intensity);
output->GetCellData()->SetActiveScalars("intensity");
}
bool RGBCellsAvailable = false;
vtkSmartPointer<vtkUnsignedCharArray> RGBCells = NULL;
if ( (elem = vtkPLY::find_element (ply, "face")) != NULL &&
vtkPLY::find_property (elem, "red", &index) != NULL &&
vtkPLY::find_property (elem, "green", &index) != NULL &&
vtkPLY::find_property (elem, "blue", &index) != NULL )
{
RGBCells = vtkSmartPointer<vtkUnsignedCharArray>::New();
RGBCells->SetName("RGB");
RGBCellsAvailable = true;
output->GetCellData()->AddArray(RGBCells);
output->GetCellData()->SetActiveScalars("RGB");
}
bool RGBPointsAvailable = false;
vtkSmartPointer<vtkUnsignedCharArray> RGBPoints = NULL;
if ( (elem = vtkPLY::find_element (ply, "vertex")) != NULL &&
vtkPLY::find_property (elem, "red", &index) != NULL &&
vtkPLY::find_property (elem, "green", &index) != NULL &&
vtkPLY::find_property (elem, "blue", &index) != NULL )
{
RGBPoints = vtkSmartPointer<vtkUnsignedCharArray>::New();
RGBPointsAvailable = true;
RGBPoints->SetName("RGB");
RGBPoints->SetNumberOfComponents(3);
output->GetPointData()->SetScalars(RGBPoints);
}
bool NormalPointsAvailable=false;
vtkSmartPointer<vtkFloatArray> Normals = NULL;
if ( (elem = vtkPLY::find_element (ply, "vertex")) != NULL &&
vtkPLY::find_property (elem, "nx", &index) != NULL &&
vtkPLY::find_property (elem, "ny", &index) != NULL &&
vtkPLY::find_property (elem, "nz", &index) != NULL )
{
Normals = vtkSmartPointer<vtkFloatArray>::New();
NormalPointsAvailable = true;
Normals->SetName("Normals");
Normals->SetNumberOfComponents(3);
output->GetPointData()->SetNormals(Normals);
}
bool TexCoordsPointsAvailable = false;
vtkSmartPointer<vtkFloatArray> TexCoordsPoints = NULL;
if ( (elem = vtkPLY::find_element(ply, "vertex")) != NULL )
{
if ( vtkPLY::find_property(elem, "u", &index) != NULL &&
vtkPLY::find_property(elem, "v", &index) != NULL )
{
TexCoordsPointsAvailable = true;
}
else if ( vtkPLY::find_property(elem, "texture_u", &index) != NULL &&
vtkPLY::find_property(elem, "texture_v", &index) != NULL )
{
TexCoordsPointsAvailable = true;
vertProps[3].name = "texture_u";
vertProps[4].name = "texture_v";
}
if ( TexCoordsPointsAvailable )
{
TexCoordsPoints = vtkSmartPointer<vtkFloatArray>::New();
TexCoordsPoints->SetName("TCoords");
TexCoordsPoints->SetNumberOfComponents(2);
output->GetPointData()->SetTCoords(TexCoordsPoints);
}
}
// Okay, now we can grab the data
int numPts = 0, numPolys = 0;
for (int i = 0; i < nelems; i++)
{
//get the description of the first element */
elemName = elist[i];
vtkPLY::ply_get_element_description (ply, elemName, &numElems, &nprops);
// if we're on vertex elements, read them in
if ( elemName && !strcmp ("vertex", elemName) )
{
// Create a list of points
numPts = numElems;
vtkPoints *pts = vtkPoints::New();
pts->SetDataTypeToFloat();
pts->SetNumberOfPoints(numPts);
// Setup to read the PLY elements
vtkPLY::ply_get_property (ply, elemName, &vertProps[0]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[1]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[2]);
if ( TexCoordsPointsAvailable )
{
vtkPLY::ply_get_property (ply, elemName, &vertProps[3]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[4]);
TexCoordsPoints->SetNumberOfTuples(numPts);
}
if ( NormalPointsAvailable )
{
vtkPLY::ply_get_property (ply, elemName, &vertProps[5]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[6]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[7]);
Normals->SetNumberOfTuples(numPts);
}
if ( RGBPointsAvailable )
{
vtkPLY::ply_get_property (ply, elemName, &vertProps[8]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[9]);
vtkPLY::ply_get_property (ply, elemName, &vertProps[10]);
RGBPoints->SetNumberOfTuples(numPts);
}
plyVertex vertex;
for (int j=0; j < numPts; j++)
{
vtkPLY::ply_get_element (ply, (void *) &vertex);
pts->SetPoint (j, vertex.x);
if ( TexCoordsPointsAvailable )
{
TexCoordsPoints->SetTuple2(j, vertex.tex[0], vertex.tex[1]);
}
if ( NormalPointsAvailable )
{
Normals->SetTuple3(j, vertex.normal[0], vertex.normal[1], vertex.normal[2]);
}
if ( RGBPointsAvailable )
{
RGBPoints->SetTuple3(j, vertex.red, vertex.green, vertex.blue);
}
}
output->SetPoints(pts);
pts->Delete();
}//if vertex
else if ( elemName && !strcmp ("face", elemName) )
{
// Create a polygonal array
numPolys = numElems;
vtkSmartPointer<vtkCellArray> polys = vtkSmartPointer<vtkCellArray>::New();
polys->Allocate(polys->EstimateSize(numPolys,3),numPolys/2);
plyFace face;
vtkIdType vtkVerts[256];
// Get the face properties
vtkPLY::ply_get_property (ply, elemName, &faceProps[0]);
if ( intensityAvailable )
{
vtkPLY::ply_get_property (ply, elemName, &faceProps[1]);
RGBCells->SetNumberOfComponents(1);
RGBCells->SetNumberOfTuples(numPolys);
}
if ( RGBCellsAvailable )
{
vtkPLY::ply_get_property (ply, elemName, &faceProps[2]);
vtkPLY::ply_get_property (ply, elemName, &faceProps[3]);
vtkPLY::ply_get_property (ply, elemName, &faceProps[4]);
RGBCells->SetNumberOfComponents(3);
RGBCells->SetNumberOfTuples(numPolys);
}
// grab all the face elements
for (int j=0; j < numPolys; j++)
{
//grab and element from the file
vtkPLY::ply_get_element (ply, (void *) &face);
for (int k=0; k < face.nverts; k++)
{
vtkVerts[k] = face.verts[k];
}
free(face.verts); // allocated in vtkPLY::ascii/binary_get_element
polys->InsertNextCell(face.nverts,vtkVerts);
if ( intensityAvailable )
{
intensity->SetValue(j,face.intensity);
}
if ( RGBCellsAvailable )
{
RGBCells->SetValue(3*j,face.red);
RGBCells->SetValue(3*j+1,face.green);
RGBCells->SetValue(3*j+2,face.blue);
}
}
output->SetPolys(polys);
}//if face
free(elist[i]); //allocated by ply_open_for_reading
elist[i] = NULL;
}//for all elements of the PLY file
free(elist); //allocated by ply_open_for_reading
vtkDebugMacro( <<"Read: " << numPts << " points, "
<< numPolys << " polygons");
// close the PLY file
vtkPLY::ply_close (ply);
return 1;
}
int vtkPLYReader::CanReadFile(const char *filename)
{
FILE *fd = fopen(filename, "rb");
if (!fd) return 0;
char line[4] = {};
const char *result = fgets(line, sizeof(line), fd);
fclose(fd);
return (result && strncmp(result, "ply", 3) == 0);
}
void vtkPLYReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "File Name: "
<< (this->FileName ? this->FileName : "(none)") << "\n";
}
|