-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMIVSpoonController.mm
654 lines (516 loc) · 18.6 KB
/
CMIVSpoonController.mm
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
/*=========================================================================
Author: Chunliang Wang ([email protected])
Program: CMIV CTA image processing Plugin for OsiriX
This file is part of CMIV CTA image processing Plugin for OsiriX.
Copyright (c) 2007,
Center for Medical Image Science and Visualization (CMIV),
Linkšping University, Sweden, http://www.cmiv.liu.se/
CMIV CTA image processing Plugin for OsiriX 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 3 of the License, or (at your option)
any later version.
CMIV CTA image processing Plugin for OsiriX 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, see <http://www.gnu.org/licenses/>.
=========================================================================*/
#import "CMIVSpoonController.h"
@implementation CMIVSpoonController
- (IBAction)applyOperation:(id)sender
{
vtkImageImport *reader;
id waitWindow = [originalViewController startWaitWindow:@"processing"];
curPix = [pixList objectAtIndex: 0];
float vectors[9];
[curPix orientation:vectors];
float vtkOriginalX = ([curPix originX] ) * vectors[0] + ([curPix originY]) * vectors[1] + ([curPix originZ] )*vectors[2];
float vtkOriginalY = ([curPix originX] ) * vectors[3] + ([curPix originY]) * vectors[4] + ([curPix originZ] )*vectors[5];
float vtkOriginalZ = ([curPix originX] ) * vectors[6] + ([curPix originY]) * vectors[7] + ([curPix originZ] )*vectors[8];
float sliceThickness = [curPix sliceInterval];
if( sliceThickness == 0)
{
NSLog(@"Slice interval = slice thickness!");
sliceThickness = [curPix sliceThickness];
}
unsigned char *volumeData;
long size=imageWidth*imageHeight*imageAmount*sizeof(unsigned char);
volumeData= (unsigned char*)malloc(size);
memset(volumeData,0,size);
int x,y,z;
unsigned int i;
unsigned char *textureBuffer;
for(z=0;z<imageAmount;z++)
{
[self updateROI:z];
for(i=0;i<[[viewROIList objectAtIndex: z] count];i++)
{
ROI* tempROI=[[viewROIList objectAtIndex:z] objectAtIndex:i];
textureBuffer=[tempROI textureBuffer];
for(y=0;y<[tempROI textureHeight];y++)
for(x=0;x<[tempROI textureWidth];x++)
if(*(textureBuffer+y*[tempROI textureWidth]+x))
*(volumeData+z*imageWidth*imageHeight+(y+[tempROI textureUpLeftCornerY])*imageWidth+x+[tempROI textureUpLeftCornerX])=0xff;
}
}
reader = vtkImageImport::New();
reader->SetWholeExtent(0, imageWidth-1, 0, imageHeight-1, 0, imageAmount-1);
reader->SetDataSpacing( [curPix pixelSpacingX], [curPix pixelSpacingY], sliceThickness);
reader->SetDataOrigin( vtkOriginalX,vtkOriginalY,vtkOriginalZ );
reader->SetDataExtentToWholeExtent();
reader->SetDataScalarTypeToUnsignedChar();
reader->SetImportVoidPointer(volumeData);
x=[xRadius intValue];
y=[yRadius intValue];
z=[zRadius intValue];
vtkImageOpenClose3D* opener=vtkImageOpenClose3D::New();
opener->SetInputConnection(reader->GetOutputPort());
opener->SetOpenValue(255);
opener->SetCloseValue(0);
opener->SetKernelSize(x,y,z);
vtkImageOpenClose3D* closer=vtkImageOpenClose3D::New();
closer->SetInputConnection(reader->GetOutputPort());
closer->SetOpenValue(0);
closer->SetCloseValue(255);
closer->SetKernelSize(x,y,z);
vtkImageDilateErode3D* eroder = vtkImageDilateErode3D::New();
eroder->SetInputConnection(reader->GetOutputPort());
eroder->SetErodeValue(255);
eroder->SetDilateValue(0);
eroder->SetKernelSize(x,y,z);
vtkImageDilateErode3D* dilater = vtkImageDilateErode3D::New();
dilater->SetInputConnection(reader->GetOutputPort());
dilater->SetErodeValue(0);
dilater->SetDilateValue(255);
dilater->SetKernelSize(x,y,z);
vtkImageData *tempIm;
int imExtent[ 6];
double space[ 3], origin[ 3];
if([operationOption selectedRow] == 2)
{
tempIm = opener->GetOutput();
}
else if([operationOption selectedRow] == 0)
{
tempIm= eroder->GetOutput();
}
else if([operationOption selectedRow] == 1)
{
tempIm= dilater->GetOutput();
}
else if([operationOption selectedRow] == 3)
{
tempIm= closer->GetOutput();
}
tempIm->Update();
tempIm->GetWholeExtent( imExtent);
tempIm->GetSpacing( space);
tempIm->GetOrigin( origin);
unsigned char* outputVolumeData= (unsigned char*) tempIm->GetScalarPointer();
//tempIm->Delete() ;
NSString *roiName = [NSString stringWithString:@"result"];
[resultROIList removeAllObjects];
for(i=0;i<[pixList count];i++)
{
textureBuffer=outputVolumeData + imageWidth * imageHeight * i;
ROI *newROI=[[ROI alloc] initWithTexture:textureBuffer textWidth:imageWidth textHeight:imageHeight textName:roiName positionX:0 positionY:0 spacingX:[curPix pixelSpacingY] spacingY:[curPix pixelSpacingY] imageOrigin:NSMakePoint( [curPix originX], [curPix originY])];
//[newROI reduceTextureIfPossible];
color.red = 0;
color.green = 0;
color.blue = 65000;
[newROI setColor:color];
[resultROIList addObject:newROI];
[newROI release];
}
free(volumeData);
reader->Delete() ;
opener->Delete() ;
closer->Delete() ;
eroder->Delete() ;
dilater->Delete();
free(outputVolumeData);
[originalViewController endWaitWindow: waitWindow];
[binaryOrROIOption deselectAllCells];
[binaryOrROIOption selectCellWithTag:1];
if([[existedROI itemArray] count] <= [existedMaskList count])
[existedROI addItemWithTitle: roiName];
[existedROI setEnabled: YES];
[existedROI selectItemAtIndex:[[existedROI itemArray] count]-1];
[self selectANewROI:nil];
}
- (IBAction)cancelDialog:(id)sender
{
[window setReleasedWhenClosed:YES];
[window close];
// [window orderOut:sender];
[NSApp endSheet:window returnCode:[sender tag]];
[resultROIList removeAllObjects];
[viewROIList removeAllObjects];
[existedMaskList removeAllObjects];
[resultROIList release];
[viewROIList release];
[existedMaskList release];
unsigned int i;
for( i = 0; i < [toolbarList count]; i++)
{
[[toolbarList objectAtIndex: i] setVisible: YES];
}
[toolbarList removeAllObjects];
[toolbarList release];
[parent exitCurrentDialog];
}
- (IBAction)exportImages:(id)sender
{
if([exportOption selectedRow]==0)
{
unsigned int i,j;
for(i=0;i<[pixList count];i++)
{
[self updateROI:i];
for(j=0;j<[[controllorROIList objectAtIndex: i] count];j++)
if([[[[controllorROIList objectAtIndex: i] objectAtIndex: j] name] isEqualToString:[maskName stringValue]] )
{
[[controllorROIList objectAtIndex: i] removeObjectAtIndex:j];
j--;
}
for(j=0;j<[[viewROIList objectAtIndex: i] count];j++)
{
ROI* tempROI=[[viewROIList objectAtIndex: i] objectAtIndex:j];
[tempROI setName: [maskName stringValue]];
[[controllorROIList objectAtIndex: i] addObject: tempROI];
}
}
}
else
{
unsigned int i,j;
long imageSize=imageWidth*imageHeight;
ViewerController* new2DViewer ;
unsigned char* maskBuffer= (unsigned char*)malloc(imageSize);
unsigned char* textureBuffer;
long size=sizeof(float)*imageSize*imageAmount;
float *volumeData=(float*)malloc(size);
if(!volumeData||!maskBuffer)
{
NSRunAlertPanel(NSLocalizedString(@"no enough RAM", nil), NSLocalizedString(@"no enough RAM", nil), NSLocalizedString(@"OK", nil), nil, nil);
return;
}
float *inputData=[originalViewController volumePtr:0];
memcpy(volumeData,inputData,size);
float minValue=[curPix minValueOfSeries];
int x,y;
for(i=0;i<[pixList count];i++)
{
memset(maskBuffer,0,imageSize) ;
[self updateROI:i];
for(j=0;j<[[viewROIList objectAtIndex: i] count];j++)
{
ROI* tempROI=[[viewROIList objectAtIndex:i] objectAtIndex:j];
textureBuffer=[tempROI textureBuffer];
for(y=0;y<[tempROI textureHeight];y++)
for(x=0;x<[tempROI textureWidth];x++)
if(*(textureBuffer+y*[tempROI textureWidth]+x))
*(maskBuffer + (y+[tempROI textureUpLeftCornerY])*imageWidth + x+[tempROI textureUpLeftCornerX])=0xff;
}
int ii;
if([exportOption selectedRow]==2)
{
for(ii=0;ii<imageSize;ii++)
if(*(maskBuffer+ii))
*(volumeData+i*imageSize+ii)=minValue;
}
else if([exportOption selectedRow]==1)
{
for(ii=0;ii<imageSize;ii++)
if((*(maskBuffer+ii))==0)
*(volumeData+i*imageSize+ii)=minValue;
}
}
NSMutableArray *newPixList = [NSMutableArray arrayWithCapacity: 0];
NSMutableArray *newDcmList = [NSMutableArray arrayWithCapacity: 0];
NSData *newData = [NSData dataWithBytesNoCopy:volumeData length: size freeWhenDone:YES];
int z;
for( z = 0 ; z < imageAmount; z ++)
{
curPix = [pixList objectAtIndex: z];
DCMPix *copyPix = [curPix copy];
[newPixList addObject: copyPix];
[copyPix release];
[newDcmList addObject: [[originalViewController fileList] objectAtIndex: z]];
[[newPixList lastObject] setfImage: (float*) (volumeData + imageSize * z)];
}
new2DViewer = [originalViewController newWindow :newPixList
:newDcmList
:newData];
[[originalViewController imageView] setIndex: [imageSlider intValue]];
free(maskBuffer);
}
[self cancelDialog:nil];
}
- (IBAction)deleteCurrentMask:(id)sender
{
if([binaryOrROIOption selectedRow]==1)
{
int index=[existedROI indexOfSelectedItem];
if((unsigned int)index<[existedMaskList count])
{
unsigned int i,j;
for(i=0;i<[pixList count];i++)
{
for(j=0;j<[[controllorROIList objectAtIndex: i] count];j++)
if([[[[controllorROIList objectAtIndex: i] objectAtIndex: j] name] isEqualToString:[maskName stringValue]] )
{
[[controllorROIList objectAtIndex: i] removeObjectAtIndex:j];
j--;
}
}
[existedMaskList removeObjectAtIndex: index];
}
else
{
[resultROIList removeAllObjects];
}
[existedROI removeItemAtIndex:index];
if(index>0)
index--;
[existedROI selectItemAtIndex:index];
[self selectANewROI:nil];
}
}
- (IBAction)goNextStep:(id)sender
{
}
- (int) showSpoonPanel:(ViewerController *) vc :(CMIV_CTA_TOOLS*) owner
{
int err=0;
isFirstTime=1;
isShowingResult=0;
originalViewController=vc;
parent = owner;
curPix = [[originalViewController pixList] objectAtIndex: [[originalViewController imageView] curImage]];
pixList = [originalViewController pixList];
controllorROIList = [originalViewController roiList];
NSArray *fileList =[originalViewController fileList ];
imageWidth = [curPix pwidth];
imageHeight = [curPix pheight];
imageAmount = [pixList count];
if( [curPix isRGB])
{
NSRunAlertPanel(NSLocalizedString(@"no RGB Support", nil), NSLocalizedString(@"This plugin doesn't surpport RGB images, please convert this series into BW images first", nil), NSLocalizedString(@"OK", nil), nil, nil);
return 0;
}
[NSBundle loadNibNamed:@"Spoon_Panel" owner:self];
viewROIList = [[NSMutableArray alloc] initWithCapacity: 0];
resultROIList = [[NSMutableArray alloc] initWithCapacity: 0];
unsigned int i;
for( i = 0; i < [pixList count]; i++)
{
[viewROIList addObject:[NSMutableArray arrayWithCapacity:0]];
}
color.red = 0;
color.green = 0;
color.blue = 65000;
[self initExistedMaskList];
[viewer setDCM:pixList :fileList :viewROIList :0 :'i' :YES];
[viewer setIndexWithReset: [pixList count]/2 :YES];
[viewer setOrigin: NSMakePoint(0,0)];
[viewer setCurrentTool:tWL];
[viewer scaleToFit];
[xRadius setIntValue:10];
[yRadius setIntValue:10];
[zRadius setIntValue:10];
[imageSlider setMaxValue: [pixList count]-1];
[imageSlider setIntValue:[pixList count]/2];
float upperThreshold = [curPix maxValueOfSeries];
float lowerThreshold = [curPix minValueOfSeries];
[thresholdSlider setMaxValue:upperThreshold];
[thresholdSlider setMinValue:lowerThreshold];
[thresholdSlider setFloatValue: 100];
[thresholdText setFloatValue: 100.0];
[self pageDownorUp:0L];
[NSApp beginSheet: window modalForWindow:[originalViewController window] modalDelegate:self didEndSelector:nil contextInfo:nil];
NSArray *winList = [NSApp windows];
toolbarList = [[NSMutableArray alloc] initWithCapacity: 0];
for( i = 0; i < [winList count]; i++)
{
if( [[winList objectAtIndex:i] toolbar])
{
NSToolbar *aToolbar=[[winList objectAtIndex:i] toolbar];
if([aToolbar isVisible])
{
[toolbarList addObject: aToolbar];
[aToolbar setVisible:NO];
}
}
}
[maskName setStringValue:[NSString stringWithString:@"result"]];
return err;
}
- (IBAction)setThreshold:(id)sender
{
[thresholdText setFloatValue: [thresholdSlider floatValue] ];
[self pageDownorUp:0L];
}
- (IBAction)setBinaryOrROI:(id)sender
{
if([binaryOrROIOption selectedRow]==0)
{
[existedROI setEnabled: NO];
[deleteCurrentSeries setEnabled: NO];
color.red = 0;
color.green = 0;
color.blue = 65000;
[maskName setStringValue:[NSString stringWithString:@"result"]];
[self pageDownorUp:0L];
}
else
{
if([[existedROI itemArray] count]<=0)
{
[binaryOrROIOption deselectAllCells];
[binaryOrROIOption selectCellWithTag:0];
[self pageDownorUp:0L];
}
else
{
[existedROI setEnabled: YES];
[deleteCurrentSeries setEnabled: YES];
[self selectANewROI:nil];
}
}
}
- (IBAction)selectANewROI:(id)sender
{
[maskName setStringValue:[existedROI titleOfSelectedItem] ];
[self pageDownorUp:0L];
}
- (IBAction)pageDownorUp:(id)sender
{
int index= [imageSlider intValue];
[self updateROI:index];
[viewer setIndex: index];
// [viewer setIndex: index];
}
- (void) initExistedMaskList
{
unsigned int i,j,k;
int thereIsSameName ;
NSMutableArray *curRoiList = [originalViewController roiList];
ROI * tempROI;
existedMaskList = [[NSMutableArray alloc] initWithCapacity: 0];
[existedROI removeAllItems];
for(i=0;i<[curRoiList count];i++)
for(j=0;j<[[curRoiList objectAtIndex:i] count];j++)
{
tempROI = [[curRoiList objectAtIndex: i] objectAtIndex:j];
if([tempROI type]==tPlain)
{
thereIsSameName=0;
for(k=0;k<[existedMaskList count];k++)
{
if ([[tempROI name] isEqualToString:[existedMaskList objectAtIndex: k] ]==YES)
thereIsSameName=1;
}
if(!thereIsSameName)
{
[existedMaskList addObject:[tempROI name]];
[existedROI addItemWithTitle: [tempROI name]];
}
}
}
if([existedMaskList count]>0)
[existedROI selectItemAtIndex:0];
}
- (void)updateROI:(int)imageIndex
{
if([binaryOrROIOption selectedRow]==0)
{
unsigned char *textureBuffer;
[[viewROIList objectAtIndex: imageIndex] removeAllObjects];
curPix = [pixList objectAtIndex: imageIndex];
float *srcImage = [curPix fImage];
float thresholdValue = [thresholdSlider floatValue];
thresholdValue = round ( thresholdValue );
vImage_Buffer srcf, dst8;
srcf.data = srcImage;
textureBuffer= (unsigned char*) malloc(imageWidth*imageHeight);
srcf.height = imageHeight;
srcf.width = imageWidth;
srcf.rowBytes = imageWidth*sizeof(float);
dst8.data = textureBuffer;
dst8.height = imageHeight;
dst8.width = imageWidth;
dst8.rowBytes = imageWidth*sizeof(unsigned char);
vImageConvert_PlanarFtoPlanar8( &srcf,&dst8, thresholdValue,thresholdValue-1,0);
NSString *roiName = [NSString stringWithString:@"result"];
ROI *newROI=[[ROI alloc] initWithTexture:textureBuffer textWidth:imageWidth textHeight:imageHeight textName:roiName positionX:0 positionY:0 spacingX:[curPix pixelSpacingY] spacingY:[curPix pixelSpacingY] imageOrigin:NSMakePoint( [curPix originX], [curPix originY])];
[newROI setColor:color];
[[viewROIList objectAtIndex: imageIndex] addObject: newROI];
[newROI release];
free(textureBuffer);
}
else
{
unsigned char *textureBuffer, *oldTexture;
[[viewROIList objectAtIndex: imageIndex] removeAllObjects];
curPix = [pixList objectAtIndex: imageIndex];
float *srcImage = [curPix fImage];
float thresholdValue = [thresholdSlider floatValue];
thresholdValue = round ( thresholdValue );
unsigned int i;
NSString *roiName;
ROI *tempROI;
if((unsigned int)[existedROI indexOfSelectedItem]<[existedMaskList count])
{
for(i=0;i<[[controllorROIList objectAtIndex: imageIndex] count];i++)
{
tempROI=[[controllorROIList objectAtIndex: imageIndex] objectAtIndex:i];
roiName=[tempROI name];
if([roiName isEqualToString:[existedMaskList objectAtIndex: [existedROI indexOfSelectedItem] ]] && [tempROI type]==tPlain)
{
textureBuffer=(unsigned char*)malloc([tempROI textureWidth]*[tempROI textureHeight]);
int x,y;
oldTexture=[tempROI textureBuffer];
for(y=0;y<[tempROI textureHeight];y++)
for(x=0;x<[tempROI textureWidth];x++)
if((*(oldTexture+y*[tempROI textureWidth]+x))&&*(srcImage+(y+[tempROI textureUpLeftCornerY])*imageWidth+x+[tempROI textureUpLeftCornerX])>thresholdValue)
*(textureBuffer+y*[tempROI textureWidth]+x)=0xff;
else
*(textureBuffer+y*[tempROI textureWidth]+x)=0x00;
ROI *newROI= [[ROI alloc] initWithTexture:textureBuffer textWidth:[tempROI textureWidth] textHeight:[tempROI textureHeight] textName:[tempROI name] positionX:[tempROI textureUpLeftCornerX] positionY:[tempROI textureUpLeftCornerY] spacingX:[curPix pixelSpacingY] spacingY:[curPix pixelSpacingY] imageOrigin:NSMakePoint( [curPix originX], [curPix originY])];
if([tempROI respondsToSelector:@selector(rgbcolor)])
color= [tempROI rgbcolor];
[newROI setColor:color];
[[viewROIList objectAtIndex: imageIndex] addObject: newROI];
[newROI release];
free(textureBuffer);
}
}
}
else
{
tempROI=[resultROIList objectAtIndex: imageIndex];
roiName=[tempROI name];
textureBuffer=(unsigned char*)malloc([tempROI textureWidth]*[tempROI textureHeight]);
int x,y;
oldTexture=[tempROI textureBuffer];
for(y=0;y<[tempROI textureHeight];y++)
for(x=0;x<[tempROI textureWidth];x++)
if((*(oldTexture+y*[tempROI textureWidth]+x))&&*(srcImage+(y+[tempROI textureUpLeftCornerY])*imageWidth+x+[tempROI textureUpLeftCornerX])>thresholdValue)
*(textureBuffer+y*[tempROI textureWidth]+x)=0xff;
else
*(textureBuffer+y*[tempROI textureWidth]+x)=0x00;
ROI *newROI= [[ROI alloc] initWithTexture:textureBuffer textWidth:[tempROI textureWidth] textHeight:[tempROI textureHeight] textName:[tempROI name] positionX:[tempROI textureUpLeftCornerX] positionY:[tempROI textureUpLeftCornerY] spacingX:[curPix pixelSpacingY] spacingY:[curPix pixelSpacingY] imageOrigin:NSMakePoint( [curPix originX], [curPix originY])];
if([tempROI respondsToSelector:@selector(rgbcolor)])
color= [tempROI rgbcolor];
[newROI setColor:color];
[[viewROIList objectAtIndex: imageIndex] addObject: newROI];
[newROI release];
free(textureBuffer);
}
}
}
@end