Computer Assited Medical Intervention Tool Kit  version 5.0
MeshQuality.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2021 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 
26 #ifndef MESH_QUALITY_H
27 #define MESH_QUALITY_H
28 
29 #include <Action.h>
30 #include <MeshComponent.h>
31 
32 #include <QFrame>
33 #include <QLabel>
34 #include <QTableWidget>
35 #include <QComboBox>
36 
37 #include <vtkDoubleArray.h>
38 
57 class MeshQuality : public camitk::Action {
58  Q_OBJECT
59 public:
62 
64  virtual ~MeshQuality() = default;
65 
67  virtual QWidget* getWidget() override;
68 
69 public slots:
71  virtual camitk::Action::ApplyStatus apply() override;
72 
74  void updateComboBox(int i);
75 
77  void computeMeasure(int i);
78 
79 private:
81  QFrame* informationFrame;
82 
84  QLabel* informationLabel;
85 
87  QTableWidget* qualityInfo;
88 
90  QComboBox* elementsComboBox;
91 
93  QComboBox* qualityMeasureComboBox;
94 
96  QLabel* elementInfoLabel;
97 
99  bool isConnected;
100 
102  QString currentMeshName;
103 
105  std::map<unsigned char, std::vector<vtkIdType> > elementsMap;
106 
108  double minNR, maxNR;
109 
111  double minAR, maxAR;
112 
114  double minV, maxV;
115 
126  double getQualityColor(double val, double minAR, double maxAR, double minNR, double maxNR);
127 
134  QString getInfos(camitk::MeshComponent* meshComponent);
135 
137  void updateTableWidget(vtkSmartPointer<vtkDoubleArray> qualityArray);
139  void updateMeshColor(vtkSmartPointer< vtkDoubleArray > qualityArray);
140 
142  static QStringList trisFuncList;
143  static QStringList quadsFuncList;
144  static QStringList hexasFuncList;
145  static QStringList tetrasFuncList;
146 
148  vtkSmartPointer<vtkDoubleArray> computeTrisQuality(camitk::MeshComponent* meshComponent, int qualityTest);
149  vtkSmartPointer<vtkDoubleArray> computeTetrasQuality(camitk::MeshComponent* meshComponent, int qualityTest);
150  vtkSmartPointer<vtkDoubleArray> computeHexasQuality(camitk::MeshComponent* meshComponent, int qualityTest);
151  vtkSmartPointer<vtkDoubleArray> computeQuadsQuality(camitk::MeshComponent* meshComponent, int qualityTest);
152 };
153 #endif // MESH_QUALITY_H
MeshQuality::computeMeasure
void computeMeasure(int i)
method called when the selected item in qualityMeasureComboBox is changed
Definition: MeshQuality.cpp:180
camitk::Action::setFamily
void setFamily(QString family)
the name of the family in which this action is associated
Definition: Action.cpp:136
MeshQuality::minNR
double minNR
minimum and maximum of normal range of a quality measure
Definition: MeshQuality.h:131
MeshQuality::maxAR
double maxAR
Definition: MeshQuality.h:134
MeshQuality::getQualityColor
double getQualityColor(double val, double minAR, double maxAR, double minNR, double maxNR)
get the appropriate color between [0;1] for a colorScale
Definition: MeshQuality.cpp:344
InteractiveGeometryViewer.h
MeshQuality::minAR
double minAR
minimum and maximum of acceptable range of a quality measure (included in normal range)
Definition: MeshQuality.h:134
MeshQuality::MeshQuality
MeshQuality(camitk::ActionExtension *)
the constructor
Definition: MeshQuality.cpp:56
camitk::Action::SUCCESS
@ SUCCESS
everything went according to plan
Definition: Action.h:248
MeshQuality::computeTetrasQuality
vtkSmartPointer< vtkDoubleArray > computeTetrasQuality(camitk::MeshComponent *meshComponent, int qualityTest)
Definition: MeshQuality.cpp:824
MeshQuality::maxV
double maxV
Definition: MeshQuality.h:137
camitk::Action::ApplyStatus
ApplyStatus
Definition: Action.h:247
camitk::Action::setName
void setName(QString name)
Definition: Action.cpp:120
camitk::Action::setComponent
void setComponent(QString component)
the name of the component class that can be used by this action
Definition: Action.cpp:131
MeshQuality::quadsFuncList
static QStringList quadsFuncList
Definition: MeshQuality.h:166
MeshQuality::getInfos
QString getInfos(camitk::MeshComponent *meshComponent)
return a rich text describing the mesh
Definition: MeshQuality.cpp:128
camitk::Action::getTargets
const ComponentList getTargets() const
the currently selected and valid (regarding the component property) components, for which this action...
Definition: Action.cpp:166
Action.h
MeshQuality::~MeshQuality
virtual ~MeshQuality()=default
the destructor
MeshQuality::updateMeshColor
void updateMeshColor(vtkSmartPointer< vtkDoubleArray > qualityArray)
update the mesh to diplay a scalar color to show good and bad elements
Definition: MeshQuality.cpp:212
camitk::Component::getDataPort
vtkSmartPointer< vtkPointSet > getDataPort
Definition: sdk/libraries/core/component/Component.h:585
MeshQuality
Display mesures of mesh quality listed by element types.
Definition: MeshQuality.h:57
camitk::Action::addTag
void addTag(QString tag)
add a tag to the tags list of this action
Definition: Action.cpp:141
MeshQuality::maxNR
double maxNR
Definition: MeshQuality.h:131
Log.h
MeshQuality::apply
virtual camitk::Action::ApplyStatus apply() override
method called when the action is applied
Definition: MeshQuality.cpp:112
MeshComponent.h
MeshQuality::computeTrisQuality
vtkSmartPointer< vtkDoubleArray > computeTrisQuality(camitk::MeshComponent *meshComponent, int qualityTest)
methods to compute the correct quality from a mesh
Definition: MeshQuality.cpp:399
camitk::InterfaceGeometry::getPointSet
virtual vtkSmartPointer< vtkPointSet > getPointSet()=0
camitk::Action
Action class is an abstract class that enables you to build a action (generally on a component)....
Definition: Action.h:231
MeshQuality::qualityInfo
QTableWidget * qualityInfo
the list of quality informations
Definition: MeshQuality.h:110
MeshQuality::updateComboBox
void updateComboBox(int i)
method called when the selected item in elementsComboBox is changed
Definition: MeshQuality.cpp:245
MeshQuality::tetrasFuncList
static QStringList tetrasFuncList
Definition: MeshQuality.h:168
CAMITK_ERROR
#define CAMITK_ERROR(MSG)
Log for error verbosity (the minimum verbosity) Will always appear.
Definition: Log.h:276
MeshQuality::computeHexasQuality
vtkSmartPointer< vtkDoubleArray > computeHexasQuality(camitk::MeshComponent *meshComponent, int qualityTest)
Definition: MeshQuality.cpp:504
MeshQuality::computeQuadsQuality
vtkSmartPointer< vtkDoubleArray > computeQuadsQuality(camitk::MeshComponent *meshComponent, int qualityTest)
Definition: MeshQuality.cpp:650
camitk::Action::setDescription
void setDescription(QString description)
the description of the action
Definition: Action.cpp:126
camitk::Component::getName
QString getName() const override
get the name to be displayed
Definition: sdk/libraries/core/component/Component.h:907
MeshQuality::currentMeshName
QString currentMeshName
name of the current mesh (needed as an attribute to avoid recomputing of tableWidget)
Definition: MeshQuality.h:125
MeshQuality::informationFrame
QFrame * informationFrame
this action widget (to simplify, it is just a label that gives mesh quality information)
Definition: MeshQuality.h:104
MeshQuality::elementsComboBox
QComboBox * elementsComboBox
list of elements describing the current mesh
Definition: MeshQuality.h:113
MeshQuality::elementInfoLabel
QLabel * elementInfoLabel
text that gives general mesh quality for one type of element (min max avg)
Definition: MeshQuality.h:119
MeshQuality::hexasFuncList
static QStringList hexasFuncList
Definition: MeshQuality.h:167
MeshQuality::getWidget
virtual QWidget * getWidget() override
method called when the action when the action is triggered (i.e. started)
Definition: MeshQuality.cpp:71
camitk::ActionExtension
This class describes what is a generic Action extension. To add a ActionExtension to CamiTK core,...
Definition: ActionExtension.h:80
MeshQuality::isConnected
bool isConnected
true, if slots are connected, false otherwise
Definition: MeshQuality.h:122
MeshQuality::updateTableWidget
void updateTableWidget(vtkSmartPointer< vtkDoubleArray > qualityArray)
update the table widget to display quality measure for each element
Definition: MeshQuality.cpp:273
MeshQuality::elementsMap
std::map< unsigned char, std::vector< vtkIdType > > elementsMap
map describing index of cell for each type of element (needed as an attribute to update tableWidget)
Definition: MeshQuality.h:128
camitk::MeshComponent
Basic component to manage any kind of mesh.
Definition: MeshComponent.h:53
camitk::refresh
void refresh()
refresh the display
MeshQuality::trisFuncList
static QStringList trisFuncList
lists defining quality methods for each type of element
Definition: MeshQuality.h:165
MeshQuality::minV
double minV
minimum and maximum of values found for the concerned mesh. These data are used when ratio are comput...
Definition: MeshQuality.h:137
MeshQuality::informationLabel
QLabel * informationLabel
the information label (needed as an attributes to update the displayed text)
Definition: MeshQuality.h:107
MeshQuality.h
MeshQuality::qualityMeasureComboBox
QComboBox * qualityMeasureComboBox
list of measure quality computable for one type of element
Definition: MeshQuality.h:116
Application.h
camitk
Definition: Action.cpp:35