forked from SCIInstitute/ShapeWorks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitkParticlePositionWriter.h
executable file
·91 lines (73 loc) · 2.49 KB
/
itkParticlePositionWriter.h
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
#pragma once
#include <string>
#include <vector>
#include "itkDataObject.h"
#include "itkObjectFactory.h"
#include "itkPoint.h"
#include "itkWeakPointer.h"
namespace itk {
/** \class ParticlePositionWriter
* This class writes a set of Points to disk. Its input is a std::vector of points.
* The file format is simple an ascii list of VDimension-tuples stored one per
* line (delimited by std::endl). There is no header required for the file,
* but the file should not contain leading or trailing empty lines.
*
* In 3D, for example, a fragment of a points file looks like this:
*
* 1.0 2.0 5.4
* 2.3 8.7 33.0
* 4.0 8.21 4.44
*
* etc..
*/
class ITK_EXPORT ParticlePositionWriter : public DataObject {
public:
/** Standard class typedefs */
typedef ParticlePositionWriter Self;
typedef DataObject Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
typedef WeakPointer<const Self> ConstWeakPointer;
/** The point type that this class reads. */
typedef Point<double, 3> PointType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(ParticlePositionWriter, DataObject);
/** Set the input vector. The input is a reference to a std::vector of PointType. */
void SetInput(const std::vector<PointType>& p) { m_Input = p; }
/** Set/Get the filename. */
itkSetStringMacro(FileName);
itkGetStringMacro(FileName);
/** Write the file. */
inline void Write() { this->Update(); }
void Update() {
// Open the output file.
std::ofstream out(m_FileName.c_str());
if (!out) {
itkExceptionMacro("Could not open point file for output: " << m_FileName.c_str());
}
// out << num_points;
// Write points.
for (typename std::vector<PointType>::const_iterator it = m_Input.begin(); it != m_Input.end(); it++) {
for (unsigned int i = 0; i < 3; i++) {
out << (*it)[i] << " ";
}
out << std::endl;
}
out.close();
};
protected:
ParticlePositionWriter() {}
void PrintSelf(std::ostream& os, Indent indent) const {
Superclass::PrintSelf(os, indent);
os << indent << "ParticlePositionWriter: " << std::endl;
}
virtual ~ParticlePositionWriter(){};
private:
ParticlePositionWriter(const Self&); // purposely not implemented
void operator=(const Self&); // purposely not implemented
std::vector<PointType> m_Input;
std::string m_FileName;
};
} // end namespace itk