File: periutils.pas

package info (click to toggle)
mricron 0.20140804.1~dfsg.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,508 kB
  • sloc: pascal: 114,876; sh: 49; makefile: 35
file content (313 lines) | stat: -rwxr-xr-x 10,460 bytes parent folder | download | duplicates (5)
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
unit periutils;
interface
{$IFDEF FPC} {$H+} {$ENDIF}

uses metagraph, define_types, sysutils,nifti_hdr, classes;

function FSLMatName (lFeatDir: string): string;
function FSLFuncName (lFeatDir: string): string;//Given feat folder returns name of filtered data
function FSLReslicedVOIName (lFeatDir, lMNIVOIName: string): string;
procedure RegressTrace (var l4DTrace: T4DTrace);
function ConvertToTrace (var l4DHdr: TMRIcroHdr;var l4DTrace: T4DTrace; lX,lY,lZ: integer): boolean;
function ReadCond (l3ColTextFileName: string; var l4DTrace: T4DTrace; lCond: integer): boolean;
procedure FSLEVNames (lFeatDir: string; var lEVlist: TStringList);

implementation

uses nifti_img_view, text,dialogs,periplot;

function ReadCond (l3ColTextFileName: string; var l4DTrace: T4DTrace; lCond: integer): boolean;
var
   lOnsetText: TextFile;
   lnEvents: integer;
   lFloat,lFloat2,lFloat3: single;
begin
  result := false;
  if (lCond < 1) or (lCond > kMaxCond) then
     exit;
  CloseCond(l4DTrace,lCond);

  Filemode := 0;
  assignfile(lOnsetText,l3ColTextFileName);
  {I-}
  reset(lOnsetText);
  {$I+}
  if ioresult <> 0 then begin
	  Showmessage('Unable to read file [may be in use by another program '+ l3ColTextFileName);
          exit;
  end;
  lnEvents := 0;
  while not EOF(lOnsetText) do begin
	  {$I-}
      read(lOnsetText,lFloat,lFloat2,lFloat3); //read triplets instead of readln: this should load UNIX files
        {$I+}
      if (ioresult = 0) and (lFloat3 > 0) then
           inc(lnEvents);
  end;
  if lnEvents < 1 then begin
     closefile(lOnsetText);
     showmessage('No events detected. Is this really a FSL-style 3 Column format file? '+l3ColTextFileName);
      exit;
  end;
  InitCond (l4DTrace, lCond, lnEvents);
  reset(lOnsetText);
  lnEvents := 0;
  while not EOF(lOnsetText) do begin
      lFloat := 0;
	  {$I-}
      read(lOnsetText,lFloat,lFloat2,lFloat3); //read triplets instead of readln: this should load UNIX files
        {$I+}
      if (ioresult = 0) and (lFloat3 > 0) then begin
           inc(lnEvents);
           l4DTrace.Conditions[lCond].EventRA^[lnEvents] := lFloat;
           l4DTrace.Conditions[lCond].DurRA^[lnEvents] := lFloat2;
           //l4DTrace.DurRA[lCond]^[lnEvents] := lFloat2;
        end;
  end;
  closefile(lOnsetText);
  l4DTrace.Conditions[lCond].ELabel := parsefilename(extractfilename(l3ColTextFileName));
  result := true;
end;

function ConvertToTrace (var l4DHdr: TMRIcroHdr;var l4DTrace: T4DTrace; lX,lY,lZ: integer): boolean;
var
   lVol,lVolSz,lPos,lSamples,lLine,lnLines,lROI: integer;
   l16Buf : SmallIntP;
   l32Buf : SingleP;
begin
     result := false;
     lSamples := l4DHdr.NIFTIhdr.dim[4];
     lVolSz :=  l4DHdr.NIFTIhdr.dim[1]*l4DHdr.NIFTIhdr.dim[2]*l4DHdr.NIFTIhdr.dim[3];
     if lSamples < 2 then
        exit;

     lnLines := 0;
     for lVol := (kBGOverlayNum+1) to knMaxOverlay do
         if   gMRIcroOverlay[lVol].ScrnBufferItems > 0 then //for each ROI
              inc(lnLines);
     if lnLines = 0 then begin //no ROIs
        lLine := 1;
        lPos := lX + ((lY-1)*gBGImg.ScrnDim[1])+((lZ-1)*gBGImg.ScrnDim[1]*gBGImg.ScrnDim[2]);
        if (lPos > l4DHdr.ImgBufferItems) or (lPos < 1) then exit;
        Init4DTrace(lSamples, 1,l4DTrace,false);
        l4DTrace.Lines[1].ELabel := inttostr(lX)+'x'+inttostr(lY)+'x'+inttostr(lZ);
        if (l4DHdr.ImgBufferBPP  = 4) then begin
	   l32Buf := SingleP(l4DHdr.ImgBuffer );
           for lVol := 1 to lSamples do begin
	    l4DTrace.Lines[lLine].EventRA[lVol] := l32Buf[lPos];
            lPos := lPos + lVolSz;
           end;
        end else if (l4DHdr.ImgBufferBPP  = 2) then begin
	   l16Buf := SmallIntP(l4DHdr.ImgBuffer );
           for lVol := 1 to lSamples do begin
               l4DTrace.Lines[lLine].EventRA^[lVol] := l16Buf^[lPos];
               lPos := lPos + lVolSz;
           end;
        end else if l4DHdr.ImgBufferBPP  = 1 then begin
           for lVol := 1 to lSamples do begin
               l4DTrace.Lines[lLine].EventRA^[lVol] := l4DHdr.ImgBuffer^[lPos];
               lPos := lPos + lVolSz;
           end;
        end else
         showmessage('Serious error: unknown data size!');
     end else begin //>0 ROIS
        Init4DTrace(lSamples, lnLines,l4DTrace,false);
        for lLine := 1 to lnLines do begin
            lROI := ROIoverlayNum(lLine);
            l4DTrace.Lines[lLine].ELabel := ParseFileName(extractfilename(gMRIcroOverlay[lROI].HdrFileName));
            for lVol := 1 to lSamples do
	        l4DTrace.Lines[lLine].EventRA^[lVol] := ROImean(l4DHdr,lROI,lVol{,lVolSz});
        end;
     end;
     MinMax4DTrace(l4DTrace);
     result := true;
end;

function ComputeRegress (ldataRA: singlep; lndata: integer): string;
const
  //kMax = 1000;
  kCR = chr (13);
Var
  gx : Array[1..4] of extended;
  gy : Array[1..4] of extended;
  Exy : Array[1..4] of extended;
  Ex : Array[1..4] of extended;
  Ey : Array[1..4] of extended;
  Ex2 : Array[1..4] of extended;
  Ey2 : Array[1..4] of extended;
  a : Array[1..4] of extended;
  b : Array[1..4] of extended;
  r : Array[1..4] of extended;
  chtX: Array[1..4] of extended;
  chtY: Array[1..4] of extended;
  no : Integer;
  gInter, gSlope,gRSqr : extended;

function calcit: string;
Var
  q : Integer;
Begin

For q := 1 To 4 Do Begin
  b[q] := (no * Exy[q] - Ex[q] * Ey[q]) / (no * Ex2[q] - (Ex[q]*Ex[q]) );
  a[q] := (Ey[q] - b[q] * Ex[q]) / no;
  r[q] := (no * Exy[q] - Ex[q] * Ey[q]) / (Sqrt((no * Ex2[q] - (Ex[q]*Ex[q]) ) * (no * Ey2[q] - (Ey[q]*Ey[q]) ) ));
End; // for
a[2] := Exp(a[2]);
a[4] := Exp(a[4]);
result :=  ('  Linear  Y=' + RealToStr(a[1],8) + ' +' + RealToStr(b[1],8) + ' * X'+' R=' + RealToStr(r[1],8)+' R^2=' + RealToStr(r[1]*r[1],8));
gInter := a[1];
gSlope := b[1];
gRSqr := r[1];
result := result + (',  Exp  Y=' + RealToStr(a[2],8) + ' * e ^' + RealToStr(b[2],8) + ' * X'+' R=' + RealToStr(r[2],8)+' R^2=' + RealToStr(r[2]*r[2],8));
result := result + (',  Log  Y=' + RealToStr(a[3],8) + ' +' + RealToStr(b[3],8) + ' * LOG(X)'+' R=' + RealToStr(r[3],8)+' R^2=' + RealToStr(r[3]*r[3],8));
result := result +(',  Power  Y=' + RealToStr(a[4],8) + ' * X ^' + RealToStr(b[4],8)+' R=' + RealToStr(r[4],8)+' R^2=' + RealToStr(r[4]*r[4],8));
End; // nested calcit()
Procedure inpcalc (lX, lY: extended);
Var
  q : Integer;
Begin
gx[1] := lX;
gy[1] := lY;
//inc(gnVal);
inc(no);
   gx[2] := gx[1];
 gy[2] := Ln(gy[1]);  //  exp
gx[3] := Ln(gx[1]);
 gy[3] := gy[1];  //  log
gx[4] := Ln(gx[1]);
 gy[4] := Ln(gy[1]);  // power

For q := 1 To 4 Do Begin
  Exy[q] := Exy[q] + gx[q] * gy[q];
  Ex[q] := Ex[q] + gx[q];
  Ey[q] := Ey[q] + gy[q];
  Ex2[q] := Ex2[q] + (gx[q]*gx[q]);
  Ey2[q] := Ey2[q] + (gy[q]*gy[q]);
 End; // For
End; //nested  inpcalc
procedure initReg;
var lC: byte;
begin
for lC := 1 to 4 do begin
  gx [lC]:= 0;
  gy [lC]:= 0;
  Exy [lC]:= 0;
  Ex[lC]:= 0;
  Ey[lC]:= 0;
  Ex2[lC]:= 0;
  Ey2[lC]:= 0;
  a[lC]:= 0;
  b[lC]:= 0;
  r[lC]:= 0;
  chtX[lC]:= 0;
  chtY[lC]:= 0;
  end; //for lC
end;//nested inp calc
const
     kDeleteVols = 3;
var
   i: integer;
begin  //computeRegress
  result := '';
       no := 0;
  if lndata < (kDeleteVols+5) then exit;

  //gnVal := 0;
  initReg;
  for i := kDeleteVols to lndata do begin
      //fx(i,ldatara[i]);
      inpcalc (i, ldataRA^[i]);
  end;
  result := calcit;
end; //func ComputeRegress

procedure RegressTrace (var l4DTrace: T4DTrace);
var
   lStr: string;
   lE,lCond, lnCond,lnE: integer;
   lMean : double;
   ldataRA: singlep;
begin
     lncond := 0;
     for lCond := 1 to kMaxCond do
         if l4DTrace.Lines[lCond].Events > 0 then
            inc(lnCond);
     if lncond = 0 then
     exit;
     for lCond := 1 to kMaxCond do begin
         if l4DTrace.Lines[lCond].Events > 0 then begin
            lnE := l4DTrace.Lines[lCond].Events;
            getmem(ldataRA,lnE * sizeof(single));
            lStr := gMRIcroOverlay[kBGOverlayNum].HdrFileName+','+l4DTrace.Lines[lCond].ELabel;
            //load data
            lMean := 0;
            for lE := 1 to lnE do begin
                ldataRA[lE] := l4DTrace.Lines[lCond].EventRA[lE];
                lMean := ldataRA^[lE] + lMean; //sum
            end;

            lMean := lMean / lnE;
            //fx(lMean);
            //normalize data...
            for lE := 1 to lnE do
                ldataRA^[lE] := ldataRA^[lE]/lMean;
            //compute functions
            lStr := lStr +kTextSep+ (ComputeRegress (ldataRA, lnE) );
            TextForm.MemoT.lines.add(lStr);
            //TextForm.Memo1.lines.add(lStr);
            freemem(ldataRA);
         end;
     end;
     //TextForm.show;
end;

//NEXT SECTION - FSL UTILITIES
procedure FSLEVNames (lFeatDir: string; var lEVlist: TStringList);
//Given feat folder returns name of matrix to reorient MNI image to functional data
var
   lEVdir : string;
   lSearchRec: TSearchRec;
begin
     lEVList.clear;
     lEVdir := lFEATDir+pathdelim+'custom_timing_files';
//showmessage(lEVdir);
     if not DirExists(lEVdir) then
        exit;
//showmessage(lEVdir);
     if FindFirst(lEVdir+pathdelim+'*'+'.txt', faAnyFile, lSearchRec) = 0 then begin
	    repeat
		        lEVlist.Add(lEVdir+pathdelim+lSearchRec.Name)
        until (FindNext(lSearchRec) <> 0);
     end;
     FindClose(lSearchRec);
//fx(lEVlist.count);
     //result := lFeatDir+PathDelim+'reg'+PathDelim+'example_func2standard.mat';
end; //MatName



function FSLMatName (lFeatDir: string): string;
//Given feat folder returns name of matrix to reorient MNI image to functional data
begin
     result := lFeatDir+PathDelim+'reg'+PathDelim+'example_func2standard.mat';
end; //MatName

function FSLFuncName (lFeatDir: string): string;//Given feat folder returns name of filtered data
begin
     result := lFeatDir+PathDelim+'filtered_func_data.nii.gz';
end; //FuncName

function FSLReslicedVOIName (lFeatDir, lMNIVOIName: string): string;
//Given FSL .feat folder name and source MNI volume name retuns resliced VOI name
begin
     result := lFeatDir+PathDelim+extractfilename(lMNIVOIName);


     (*result := extractfilename(lMNIVOIName);
     result := lFeatDir+PathDelim+ChangeFileExtX(result,'.nii.gz'); //;
       *)
end; //ReslicedVOIName


end.