-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUMMPerfusionFilter.h
39 lines (31 loc) · 1.17 KB
/
UMMPerfusionFilter.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
//
// UMMPerfusionFilter.h
// UMMPerfusion
//
// Copyright (c) 2012, Marcel Reich & Sven Kaiser & Markus Daab & Patrick SchŸlein & Engin Aslan
// All rights reserved.
//
#import <Foundation/Foundation.h>
#import <OsiriXAPI/PluginFilter.h>
@class UMMPPanelController;
/**
this is the class which is createt when starting the plugin from the OsiriX menu
the initPlugin method is called when OsiriX starts so you could do some adjustments there
*/
@interface UMMPerfusionFilter : PluginFilter {
UMMPPanelController *panel;
}
/**
this method is called when the Plugin starts. it does some initializtions and checks if the user is using
the newest version
@param menuName
*/
- (long) filterImage:(NSString*) menuName;
/**
this method is used to duplicate the current viewer.
this is neccessary when using fastDeconvolution- or a pixelBased algorithm to generate new viewers where the results can be shown in
@param vc the viewerController in which the plugin is started
@param deleteROIs a BOOL variable to determine if the ROIs in the viewer shall be deleted after duplication
*/
- (ViewerController *) duplicateViewer:(ViewerController *)vc deleteROIs:(BOOL)deleteROIs;
@end