NorMIT-nav  22.09
An IGT application
cxBranch.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 #ifndef BRANCH_H_
12 #define BRANCH_H_
13 
14 #include <vector>
15 #include "cxMesh.h"
16 #include "cxVector3D.h"
17 #include "org_custusx_registration_method_bronchoscopy_Export.h"
18 
19 typedef std::vector<double> dVector;
20 typedef std::vector<dVector> dVectors;
21 
22 
23 namespace cx
24 {
25 
26 class org_custusx_registration_method_bronchoscopy_EXPORT Branch;
27 typedef boost::shared_ptr<class Branch> BranchPtr;
28 typedef std::vector<BranchPtr> branchVector;
29 
30 class Branch
31 {
32  Eigen::MatrixXd mPositions;
33  Eigen::MatrixXd mOrientations;
34  Eigen::VectorXd mRadius;
35  branchVector mChildBranches;
36  BranchPtr mParentBranch;
37  double mBronchoscopeRotation = 0;
38  QString mLap;
39 
40 public:
41  Branch();
42  virtual ~Branch();
43  void setPositions(Eigen::MatrixXd pos);
44  Eigen::MatrixXd getPositions();
45  void setOrientations(Eigen::MatrixXd orient);
46  Eigen::MatrixXd getOrientations();
47  void setRadius(Eigen::VectorXd r);
48  Eigen::VectorXd getRadius();
49  double getAverageRadius();
50  void addChildBranch(BranchPtr child); //Note that this method doesn't set this branch as parent to the child. Inconsistent?
51  void setChildBranches(branchVector children); //Note that this method doesn't set this branch as parent to the children. Inconsistent?
52  void deleteChildBranches();
54  void setParentBranch(BranchPtr parent); //Note that this method doesn't set this branch as a child of the parent. Inconsistent?
56  double findBranchRadius();
58  void calculateOrientations();
59  int findParentIndex(branchVector bv) const;
60  void setBronchoscopeRotation(double rotation);
61  double getBronchoscopeRotation();
62  void removeEqualPositions();
63  void setLap(QString lap);
64  QString getLap();
65 
66 };
67 
68 
69 }//namespace cx
70 
71 #endif /* BRANCH_H_ */
72 
73 
74 
cx::Branch::calculateOrientations
void calculateOrientations()
Definition: cxBranch.cpp:89
cx::Branch::getOrientations
Eigen::MatrixXd getOrientations()
Definition: cxBranch.cpp:40
cx::Branch::setRadius
void setRadius(Eigen::VectorXd r)
Definition: cxBranch.cpp:45
cx::Branch::setPositions
void setPositions(Eigen::MatrixXd pos)
Definition: cxBranch.cpp:23
cx::Branch::getParentBranch
BranchPtr getParentBranch()
Definition: cxBranch.cpp:84
cx::Branch::addChildBranch
void addChildBranch(BranchPtr child)
Definition: cxBranch.cpp:60
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::Branch::getAverageRadius
double getAverageRadius()
Definition: cxBranch.cpp:55
cx::Branch::Branch
Branch()
Definition: cxBranch.cpp:16
cx::Branch::deleteChildBranches
void deleteChildBranches()
Definition: cxBranch.cpp:70
cx::Branch::setBronchoscopeRotation
void setBronchoscopeRotation(double rotation)
Definition: cxBranch.cpp:157
cxVector3D.h
cx::Branch::removeEqualPositions
void removeEqualPositions()
Definition: cxBranch.cpp:167
cx::Branch::setParentBranch
void setParentBranch(BranchPtr parent)
Definition: cxBranch.cpp:80
cx::Branch::findGenerationNumber
int findGenerationNumber()
Definition: cxBranch.cpp:120
cx::Branch::getLap
QString getLap()
Definition: cxBranch.cpp:196
dVectors
std::vector< dVector > dVectors
Definition: cxBranch.h:20
cx::Branch::setLap
void setLap(QString lap)
Definition: cxBranch.cpp:191
cx::Branch
Definition: cxBranch.h:30
dVector
std::vector< double > dVector
Definition: cxBranch.h:19
cx::Branch::getChildBranches
branchVector getChildBranches()
Definition: cxBranch.cpp:75
cx::Branch::setOrientations
void setOrientations(Eigen::MatrixXd orient)
Definition: cxBranch.cpp:35
cx::branchVector
std::vector< BranchPtr > branchVector
Definition: cxBranch.h:28
cx::Branch::getPositions
Eigen::MatrixXd getPositions()
Definition: cxBranch.cpp:30
cx::Branch::setChildBranches
void setChildBranches(branchVector children)
Definition: cxBranch.cpp:65
cx::Branch::findBranchRadius
double findBranchRadius()
Definition: cxBranch.cpp:139
cx::Branch::getRadius
Eigen::VectorXd getRadius()
Definition: cxBranch.cpp:50
cx::BranchPtr
boost::shared_ptr< class Branch > BranchPtr
Definition: cxBronchoscopePositionProjection.h:15
cx::Branch::getBronchoscopeRotation
double getBronchoscopeRotation()
Definition: cxBranch.cpp:162
cxMesh.h
cx::Branch::~Branch
virtual ~Branch()
Definition: cxBranch.cpp:202
cx::Branch::findParentIndex
int findParentIndex(branchVector bv) const
Branch::findParentIndex Given a vector of branches, find this branch's parent branch in that vector....
Definition: cxBranch.cpp:109