-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathselect_psf.php
231 lines (186 loc) · 6.87 KB
/
select_psf.php
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
// This file is part of the Huygens Remote Manager
// Copyright and license notice: see license.txt
use hrm\Fileserver;
use hrm\Nav;
use hrm\param\PSF;
require_once dirname(__FILE__) . '/inc/bootstrap.php';
/* *****************************************************************************
*
* START SESSION, CHECK LOGIN STATE, INITIALIZE WHAT NEEDED
*
**************************************************************************** */
session_start();
if (!isset($_SESSION['user']) || !$_SESSION['user']->isLoggedIn()) {
header("Location: " . "login.php");
exit();
}
// fileserver related code
if (!isset($_SESSION['fileserver'])) {
$name = $_SESSION['user']->name();
$_SESSION['fileserver'] = new Fileserver($name);
}
$message = "";
/* *****************************************************************************
*
* MANAGE THE MULTI-CHANNEL PSF FILE NAMES
*
**************************************************************************** */
/** @var PSF $psfParam */
$psfParam = $_SESSION['setting']->parameter("PSF");
$psfParam->setNumberOfChannels($_SESSION['setting']->numberOfChannels());
$psf = $psfParam->value();
for ($i = 0; $i < $_SESSION['setting']->numberOfChannels(); $i++) {
$psfKey = "psf{$i}";
if (isset($_POST[$psfKey])) {
$psf[$i] = $_POST[$psfKey];
}
}
// get rid of extra values in case the number of channels is changed
$psfParam->setValue($psf);
$_SESSION['setting']->set($psfParam);
/* *****************************************************************************
*
* PROCESS THE POSTED PARAMETERS
*
* In this case, we do not need to check the confidence level of the PSF
* Parameter (although it is set to Provide), since there is no other
* meaningful alternative to having to provide the file names.
*
**************************************************************************** */
if (count($_POST) > 0) {
if ($psfParam->check()) {
// Make sure to turn off the aberration correction since we use a measured PSF
$_SESSION['setting']->parameter(
'AberrationCorrectionNecessary')->setValue('0');
$saved = $_SESSION['setting']->save();
$message = $_SESSION['setting']->message();
if ($saved) {
header("Location: select_parameter_settings.php");
exit();
}
} else {
$message = $psfParam->message();
}
}
$script = "settings.js";
include("header.inc.php");
?>
<!--
Tooltips
-->
<span class="toolTip" id="ttSpanBack">
Go back to previous page.
</span>
<span class="toolTip" id="ttSpanCancel">
Abort editing and go back to the image parameters selection page.
All changes will be lost!
</span>
<span class="toolTip" id="ttSpanSave">
Save and return to the image parameters selection page.
</span>
<div id="nav">
<div id="navleft">
<ul>
<?php
echo(Nav::linkWikiPage('HuygensRemoteManagerHelpSelectPSFFiles'));
?>
<li> [ <?php echo $_SESSION['setting']->name(); ?> ]</li>
</ul>
</div>
<div id="navright">
<ul>
<?php
echo(Nav::textUser($_SESSION['user']->name()));
?>
</ul>
</div>
<div class="clear"></div>
</div>
<div id="content">
<h3><img alt="SelectPSF" src="./images/psf.png"
width="40"/> Distilled PSF file selection</h3>
<p class="message_confidence_<?php echo $_SESSION['setting']->parameter("PointSpreadFunction")->confidenceLevel(); ?>"></p>
<form method="post" action="select_psf.php" id="select">
<div id="psfselection" class="provided">
<?php
for ($i = 0; $i < $_SESSION['setting']->numberOfChannels(); $i++) {
/** @var PSF $parameter */
$parameter = $_SESSION['setting']->parameter("PSF");
$value = $parameter->value();
$missing = False;
$_SESSION['fileserver']->imageExtensions();
$files = $_SESSION['fileserver']->allFiles();
if ($files != null) {
if (!in_array($value[$i], $files)) {
$missing = True;
}
?>
<p>
<span class="title">Ch<?php echo $i ?>:</span>
<input name="psf<?php echo $i ?>"
title="Select PSF file for channel <?php echo $i ?>"
type="text"
value="<?php echo $value[$i] ?>"
class="
<?php
if ($missing) {
echo "psfmissing";
} else {
echo "psffile";
} ?>"
readonly="readonly"/>
<input type="button"
onclick="seek('<?php echo $i ?>', 'psf')"
value="browse"/>
</p>
<?php
} else {
if (!file_exists($_SESSION['fileserver']->sourceFolder())) {
?>
<p class="info">Source image folder not found! Make sure
the
folder <?php echo $_SESSION['fileserver']->sourceFolder() ?>
exists.</p>
<?php
} else {
?>
<p class="info">No images found on the server!</p>
<?php
}
break;
}
}
?>
</div>
<div><input name="OK" type="hidden"/></div>
<div id="controls">
<input type="button" value="" class="icon previous"
onmouseover="TagToTip('ttSpanBack' )"
onmouseout="UnTip()"
onclick="document.location.href='capturing_parameter.php'"/>
<input type="button" value="" class="icon up"
onmouseover="TagToTip('ttSpanCancel' )"
onmouseout="UnTip()"
onclick="document.location.href='select_parameter_settings.php'"/>
<input type="submit" value="" class="icon save"
onmouseover="TagToTip('ttSpanSave' )"
onmouseout="UnTip()" onclick="process()"/>
</div>
</form>
</div> <!-- content -->
<div id="rightpanel">
<div id="info">
<h3>Quick help</h3>
<p>Select a PSF file for each of the channels. Only
<strong>single-channel PSF files</strong> are supported.</p>
</div>
<div id="message">
<?php
echo "<p>$message</p>";
?>
</div>
</div> <!-- rightpanel -->
<?php
include("footer.inc.php");
?>