-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPACSImportPlugin.m
34 lines (32 loc) · 1.08 KB
/
PACSImportPlugin.m
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
classdef PACSImportPlugin < plugins.DENSEanalysisPlugin
% PACSImportPlugin - A DENSEanalysis plugin
%
% Allows users to load images directly from a PACS
%
% Copyright (c) 2016, Jonathan Suever
methods
function validate(self, data)
% validate - Check if the plugin can run.
%
% Performs validation to ensure that the state of the program
% is correct to be able to run the plugin.
%
% USAGE:
% PACSImportPlugin.validate(data)
%
% INPUTS:
% data: Object, DENSEdata object containing all underlying
% data from the DENSEanalysis program.
end
function run(self, data)
% run - Method executed when user selects the plugin
%
% USAGE:
% PACSImportPlugin.run(data)
%
% INPUTS:
% data: Object, DENSEdata object containing all underlying
% data from the DENSEanalysis program.
end
end
end