forked from SCIInstitute/ShapeWorks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParticleSystem.h
55 lines (40 loc) · 1.08 KB
/
ParticleSystem.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
#pragma once
#include <vector>
#include <Eigen/Core>
#include "itkParticlePositionReader.h"
#include "Shapeworks.h"
namespace shapeworks {
class ParticleSystem
{
public:
ParticleSystem(const std::vector<std::string> &paths);
// Initialize particle system from eigen matrix (rows=dimensions, cols=num_samples)
ParticleSystem(const Eigen::MatrixXd &matrix);
const Eigen::MatrixXd &Particles() const
{
return P;
};
const std::vector<std::string> &Paths() const
{
return paths;
}
//! Number of samples
int N() const
{
return P.cols();
}
//! Dimensions (e.g. x/y/z * number of particles)
int D() const
{
return P.rows();
}
bool ExactCompare(const ParticleSystem& other) const;
bool EvaluationCompare(const ParticleSystem& other) const;
static bool ReadParticleFile(std::string filename, Eigen::VectorXd& points);
private:
friend struct SharedCommandData;
ParticleSystem() {} // only for use by SharedCommandData since a ParticleSystem should always be valid, never "empty"
Eigen::MatrixXd P;
std::vector<std::string> paths;
};
}