-
Notifications
You must be signed in to change notification settings - Fork 0
/
FijiHelper.h
126 lines (95 loc) · 3.79 KB
/
FijiHelper.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#ifndef FIJIHELPER_H
#define FIJIHELPER_H
#include <QString>
#include <QProcess>
#include <QTemporaryFile>
#include <QDir>
#include <QFile>
#include "Matrix3D.h"
struct FijiConfig
{
QString fijiExe;
};
class FijiShow3D
{
public:
FijiShow3D() {}
void setConfig( const FijiConfig& c ) {
mConfig = c;
}
// gray-scale image
template<typename T>
bool run( const Matrix3D<T> &data )
{
QString fVolume = QDir::tempPath() + "/annVol.tif";
QString fScript = QDir::tempPath() + "/annVol.ijm";
bool ret = data.save( fVolume.toLatin1().constData() );
if (!ret)
return false;
QFile script( fScript );
if (!script.open(QIODevice::WriteOnly | QIODevice::Text))
return false;
// open volume
script.write( QString("open(\"%1\");").arg(fVolume).toLatin1() );
// run 3D viewer
script.write( QString("run(\"3D Viewer\");").toLatin1() );
// opts
script.write( QString(
"call(\"ij3d.ImageJ3DViewer.setCoordinateSystem\", \"false\");"
"call(\"ij3d.ImageJ3DViewer.add\", \"annVol.tif\", \"None\", \"annVol.tif\", \"0\", \"true\", \"true\", \"true\", \"2\", \"0\");"
).toLatin1() );
// close img window
script.write( QString("selectWindow(\"annVol.tif\");").toLatin1() );
script.write( QString("close();").toLatin1() );
script.close();
QString toRun = mConfig.fijiExe + " -macro " + fScript + " &";
if ( !QProcess::startDetached( toRun.toLatin1().constData() ) )
return false;
return true;
}
// rgb-image, take 3 gray-scale images and merge them in Fiji
template<typename T>
bool run( const Matrix3D<T> &dataR, const Matrix3D<T> &dataG, const Matrix3D<T> &dataB )
{
QString fVolumeR = QDir::tempPath() + "/annVol-R.tif";
QString fVolumeG = QDir::tempPath() + "/annVol-G.tif";
QString fVolumeB = QDir::tempPath() + "/annVol-B.tif";
QString fScript = QDir::tempPath() + "/annVol.ijm";
bool ret = dataR.save( fVolumeR.toLatin1().constData() );
if (!ret)
return false;
ret = dataG.save( fVolumeG.toLatin1().constData() );
if (!ret)
return false;
ret = dataB.save( fVolumeB.toLatin1().constData() );
if (!ret)
return false;
QFile script( fScript );
if (!script.open(QIODevice::WriteOnly | QIODevice::Text))
return false;
// open volumes
script.write( QString("open(\"%1\");").arg(fVolumeR).toLatin1() );
script.write( QString("open(\"%1\");").arg(fVolumeG).toLatin1() );
script.write( QString("open(\"%1\");").arg(fVolumeB).toLatin1() );
// merge
script.write( QString("run(\"Merge Channels...\", \"red=annVol-R.tif green=annVol-G.tif blue=annVol-B.tif gray=*None* create\");").toLatin1() );
// run 3D viewer
script.write( QString("run(\"3D Viewer\");").toLatin1() );
// opts
script.write( QString(
"call(\"ij3d.ImageJ3DViewer.setCoordinateSystem\", \"false\");"
"call(\"ij3d.ImageJ3DViewer.add\", \"Composite\", \"None\", \"Composite\", \"0\", \"true\", \"true\", \"true\", \"2\", \"0\");"
).toLatin1() );
// close img window
script.write( QString("selectWindow(\"Composite\");").toLatin1() );
script.write( QString("close();").toLatin1() );
script.close();
QString toRun = mConfig.fijiExe + " -macro " + fScript + " &";
if ( QProcess::startDetached( toRun.toLatin1().constData() ) == false)
return false;
return true;
}
private:
FijiConfig mConfig;
};
#endif // FIJIHELPER_H