-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMAWarpSignalPreprocUtils.c
241 lines (220 loc) · 6.15 KB
/
MAWarpSignalPreprocUtils.c
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
232
233
234
235
236
237
238
239
240
241
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _MAWarpSignalPreprocUtils_c[] = "University of Edinburgh $Id$";
#endif
/*!
* \file MAWarpSignalPreprocUtils.c
* \author Richard Baldock
* \date April 2009
* \version $Id$
* \par
* Address:
* MRC Human Genetics Unit,
* MRC Institute of Genetics and Molecular Medicine,
* University of Edinburgh,
* Western General Hospital,
* Edinburgh, EH4 2XU, UK.
* \par
* Copyright (C), [2012],
* The University Court of the University of Edinburgh,
* Old College, Edinburgh, UK.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be
* useful but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
* \ingroup MAPaint
* \brief
*/
#include <stdio.h>
#include <stdlib.h>
#include <MAPaint.h>
#include <MAWarp.h>
void warpSetSignalProcObj(void)
{
WlzObject *obj1, *obj2;
Widget toggle, slider;
Boolean setFlg;
WlzErrorNum errNum=WLZ_ERR_NONE;
if( warpGlobals.sgnlProcObj ){
WlzFreeObj(warpGlobals.sgnlProcObj);
warpGlobals.sgnlProcObj = NULL;
}
if( warpGlobals.sgnl.obj ){
if((obj1 = WlzCopyObject(warpGlobals.sgnl.obj, &errNum))){
obj1 = WlzAssignObject(obj1, NULL);
}
}
else {
return;
}
/* normalise the data */
if( errNum == WLZ_ERR_NONE ){
if((toggle = XtNameToWidget(globals.topl,
"*warp_sgnl_controls_form*normalise"))){
XtVaGetValues(toggle, XmNset, &setFlg, NULL);
if( setFlg ){
errNum = WlzGreyNormalise(obj1, 0);
}
}
}
/* Histo equalise */
if( errNum == WLZ_ERR_NONE ){
if((toggle = XtNameToWidget(globals.topl,
"*warp_sgnl_controls_form*histo_equalise"))){
XtVaGetValues(toggle, XmNset, &setFlg, NULL);
if( setFlg ){
errNum = WlzHistogramEqualiseObj(obj1, 1, 1);
}
}
}
/* Shade correction */
if( errNum == WLZ_ERR_NONE ){
if((toggle = XtNameToWidget(globals.topl,
"*warp_sgnl_controls_form*shade_correction"))){
XtVaGetValues(toggle, XmNset, &setFlg, NULL);
if( setFlg ){
errNum = WlzHistogramEqualiseObj(obj1, 1, 1);
}
}
}
/* Gauss smoothing */
if( errNum == WLZ_ERR_NONE ){
if((toggle = XtNameToWidget(globals.topl,
"*warp_sgnl_controls_form*gauss_smooth"))){
XtVaGetValues(toggle, XmNset, &setFlg, NULL);
if( setFlg ){
double width;
if((slider = XtNameToWidget(globals.topl,
"*warp_sgnl_controls_form*gauss_width"))){
width = HGU_XmGetSliderValue(slider);
}
else {
width = 3;
}
if((obj2 = WlzGauss2(obj1, width, width, 0, 0, &errNum))){
WlzFreeObj(obj1);
obj1 = WlzAssignObject(obj2, NULL);
}
}
}
}
/* if anything left set the processed object */
if( errNum == WLZ_ERR_NONE ){
if( obj1 ){
warpGlobals.sgnlProcObj = obj1;
}
}
else {
if( obj1 ){
WlzFreeObj(obj1);
}
MAPaintReportWlzError(globals.topl, "warpSetSignalProcObj", errNum);
}
return;
}
void warpSetSignalThreshObj(void)
{
WlzErrorNum errNum=WLZ_ERR_NONE;
WlzObject *obj;
WlzCompoundArray *cobj;
/* image processing sequence */
if( warpGlobals.sgnlProcObj == NULL ){
warpSetSignalProcObj();
}
if( warpGlobals.sgnlThreshObj ){
WlzFreeObj(warpGlobals.sgnlThreshObj);
warpGlobals.sgnlThreshObj = NULL;
}
/* extract object for thresholding */
if( warpGlobals.sgnlProcObj ){
/* detect if RGBA or multi-modal */
switch( warpGlobals.sgnlProcObj->type ){
case WLZ_COMPOUND_ARR_1:
/* something, maybe do nothing? */
break;
case WLZ_2D_DOMAINOBJ:
case WLZ_3D_DOMAINOBJ:
/* switch on grey type - grey do nothing */
if(WlzGreyTypeFromObj(warpGlobals.sgnlProcObj, &errNum) ==
WLZ_GREY_RGBA){
switch( warpGlobals.thresholdType ){
case WLZ_RGBA_THRESH_SINGLE:
if( warpGlobals.threshColorChannel == WLZ_RGBA_CHANNEL_GREY ){
obj = WlzRGBAToModulus(warpGlobals.sgnlProcObj, &errNum);
warpGlobals.sgnlThreshObj = WlzAssignObject(obj, &errNum);
}
else {
if((cobj = WlzRGBAToCompound(warpGlobals.sgnlProcObj,
warpGlobals.threshRGBSpace,
&errNum))){
switch( warpGlobals.threshColorChannel ){
default:
case WLZ_RGBA_CHANNEL_RED:
case WLZ_RGBA_CHANNEL_HUE:
case WLZ_RGBA_CHANNEL_CYAN:
warpGlobals.sgnlThreshObj = WlzAssignObject(cobj->o[0], &errNum);
break;
case WLZ_RGBA_CHANNEL_GREEN:
case WLZ_RGBA_CHANNEL_SATURATION:
case WLZ_RGBA_CHANNEL_MAGENTA:
warpGlobals.sgnlThreshObj = WlzAssignObject(cobj->o[1], &errNum);
break;
case WLZ_RGBA_CHANNEL_BLUE:
case WLZ_RGBA_CHANNEL_BRIGHTNESS:
case WLZ_RGBA_CHANNEL_YELLOW:
warpGlobals.sgnlThreshObj = WlzAssignObject(cobj->o[2], &errNum);
break;
}
WlzFreeObj((WlzObject *) cobj);
}
}
break;
case WLZ_RGBA_THRESH_MULTI:
if((cobj = WlzRGBAToCompound(warpGlobals.sgnlProcObj,
WLZ_RGBA_SPACE_RGB, &errNum))){
warpGlobals.sgnlThreshObj =
WlzAssignObject((WlzObject *) cobj, &errNum);
}
break;
case WLZ_RGBA_THRESH_SLICE:
case WLZ_RGBA_THRESH_BOX:
case WLZ_RGBA_THRESH_SPHERE:
warpGlobals.sgnlThreshObj =
WlzAssignObject(warpGlobals.sgnlProcObj, &errNum);
break;
case WLZ_RGBA_THRESH_NONE:
default:
break;
}
}
else {
warpGlobals.sgnlThreshObj =
WlzAssignObject(warpGlobals.sgnlProcObj, &errNum);
}
break;
case WLZ_TRANS_OBJ: /* to be done */
break;
case WLZ_EMPTY_OBJ:
warpGlobals.sgnlThreshObj =
WlzAssignObject(warpGlobals.sgnlProcObj, &errNum);
break;
default:
errNum = WLZ_ERR_OBJECT_TYPE;
break;
}
}
return;
}