Computer Assisted Medical Intervention Tool Kit  version 5.1
 
Loading...
Searching...
No Matches
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-2023 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
58 Q_OBJECT
59public:
62
64 virtual ~MeshQuality() = default;
65
67 virtual QWidget* getWidget() override;
68
69public slots:
71 virtual camitk::Action::ApplyStatus apply() override;
72
74 void updateComboBox(int i);
75
77 void computeMeasure(int i);
78
79private:
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
Display mesures of mesh quality listed by element types.
Definition MeshQuality.h:57
void computeMeasure(int i)
method called when the selected item in qualityMeasureComboBox is changed
Definition MeshQuality.cpp:180
virtual QWidget * getWidget() override
method called when the action when the action is triggered (i.e. started)
Definition MeshQuality.cpp:71
virtual camitk::Action::ApplyStatus apply() override
method called when the action is applied
Definition MeshQuality.cpp:112
virtual ~MeshQuality()=default
the destructor
void updateComboBox(int i)
method called when the selected item in elementsComboBox is changed
Definition MeshQuality.cpp:245
This class describes what is a generic Action extension.
Definition ActionExtension.h:57
Action class is an abstract class that enables you to build a action (generally on a component).
Definition Action.h:208
ApplyStatus
describes what happened during the application of an algorithm (i.e. results of the apply method)
Definition Action.h:224
Basic component to manage any kind of mesh.
Definition MeshComponent.h:53