-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetecttask.h
More file actions
executable file
·49 lines (45 loc) · 1.84 KB
/
detecttask.h
File metadata and controls
executable file
·49 lines (45 loc) · 1.84 KB
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
#ifndef DETECTTASK_H
#define DETECTTASK_H
#include <QDebug>
#include <QThreadPool>
#include <QRunnable>
#include "colldetection.h"
class DetectTask : public QRunnable
{
public:
QString d_inFile;
QString d_fileName;
QString d_logPath;
QString d_apoPath;
QString d_anoPath;
QString d_resultPath;
QString d_swcOutputPath;
QString d_somaDefinedSwcPath;
QString d_tmpswcPath;
QString d_croppedApoMulfurPath;
QString d_croppedApoBifurPath;
QString d_croppedApoLoopPath;
QString d_croppedApoMissingPath;
QString d_croppedApoCrossingPath;
QString d_croppedApoOverlapPath;
QString d_croppedApoDissoPath;
QString d_croppedApoAnglePath;
QString d_croppedSwcMulfurPath;
QString d_croppedSwcBifurPath;
QString d_croppedSwcLoopPath;
QString d_croppedSwcMissingPath;
QString d_croppedSwcCrossingPath;
QString d_croppedSwcOverlapPath;
QString d_croppedSwcDissoPath;
QString d_croppedSwcAnglePath;
public:
DetectTask();
DetectTask(QString infilePath, QString fileName, QString logPath, QString apoPath, QString anoPath, QString swcOutputPath, QString somaDefinedSwcPath, QString tmpSwcPath, QString resultPath,
QString croppedApoMulfurPath, QString croppedApoBifurPath, QString croppedApoLoopPath, QString croppedMissingPath,
QString croppedApoCrossingPath, QString croppedApoOverlapPath, QString croppedApoDissoPath, QString croppedApoAnglePath, QString croppedSwcMulfurPath,
QString croppedSwcBifurPath, QString croppedSwcLoopPath, QString croppedSwcMissingPath,
QString croppedSwcCrossingPath, QString croppedSwcOverlapPath, QString croppedSwcDissoPath, QString croppedSwcAnglePath);
QString getImageName(QString fileName);
void run() override;
};
#endif // DETECTTASK_H