-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMitoThinning.h
executable file
·42 lines (32 loc) · 1.65 KB
/
MitoThinning.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
#ifndef MITOTHINNING_H
#define MITOTHINNING_H
#include "includes.h"
extern double _rad;
extern double _dxy, _dz;
extern bool _export_graph_files;
extern bool _scale_polydata_before_save;
extern bool _export_nodes_label;
extern double _div_threshold;
extern bool _improve_skeleton_quality;
extern int ssdx_sort[26];
extern int ssdy_sort[26];
extern int ssdz_sort[26];
// Thinning algorithm based on the paper: "A 3D 6-subinteration thinning
// algorithm for extracting medial lines", by Kálman Palágyi and Attila
// Kuba.
vtkSmartPointer<vtkPolyData> Thinning3D(vtkSmartPointer<vtkImageData> ImageData, _mitoObject *mitoObject);
// Routine used to save an ImageData
void SaveImageData(vtkSmartPointer<vtkImageData> Image, const char FileName[], bool _resample = false);
// Routine used to save a PolyData
void SavePolyData(vtkSmartPointer<vtkPolyData> PolyData, const char FileName[]);
// Calculate the length of a given edge.
double GetEdgeLength(vtkIdType edge, vtkSmartPointer<vtkPolyData> PolyData);
// Label connected components in Image. Results are stored
// in Volume as negative labels. The routine returns the total
// number of connected components.
long int LabelConnectedComponents(vtkSmartPointer<vtkImageData> ImageData, vtkSmartPointer<vtkDataArray> Volume, std::vector<long int> &CSz, int ngbh, double threshold);
// Routine to delete all voxels located at boundaries of the
// image volume. Otherwise the algorithm will have problems
// checking the 3D neighborhood of those voxels.
void CleanImageBoundaries(vtkSmartPointer<vtkImageData> ImageData);
#endif