Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95747533
PlatformImager.java
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 18, 21:12
Size
2 KB
Mime Type
application/octet-stream
Expires
Fri, Dec 20, 21:12 (2 d)
Engine
blob
Format
Raw Data
Handle
23015697
Attached To
R2075 deconvolution
PlatformImager.java
View Options
/*
* DeconvolutionLab2
*
* Conditions of use: You are free to use this software for research or
* educational purposes. In addition, we expect you to include adequate
* citations and acknowledgments whenever you present or publish results that
* are based on it.
*
* Reference: DeconvolutionLab2: An Open-Source Software for Deconvolution
* Microscopy D. Sage, L. Donati, F. Soulez, D. Fortun, G. Schmit, A. Seitz,
* R. Guiet, C. Vonesch, M Unser, Methods of Elsevier, 2017.
*/
/*
* Copyright 2010-2017 Biomedical Imaging Group at the EPFL.
*
* This file is part of DeconvolutionLab2 (DL2).
*
* DL2 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.
*
* DL2 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
* DL2. If not, see <http://www.gnu.org/licenses/>.
*/
package
deconvolutionlab
;
import
signal.ComplexComponent
;
import
signal.ComplexSignal
;
import
signal.RealSignal
;
import
deconvolutionlab.monitor.Monitors
;
public
abstract
class
PlatformImager
{
public
class
ContainerImage
{
public
Object
object
;
}
public
enum
Type
{
FLOAT
,
SHORT
,
BYTE
};
public
abstract
RealSignal
create
();
public
abstract
RealSignal
create
(
String
name
);
public
abstract
ContainerImage
createContainer
(
String
title
);
public
abstract
void
show
(
ComplexSignal
signal
,
String
title
,
ComplexComponent
complex
);
public
abstract
void
show
(
ComplexSignal
signal
,
String
title
);
public
abstract
void
append
(
ContainerImage
container
,
RealSignal
signal
,
String
title
);
public
abstract
void
append
(
ContainerImage
container
,
RealSignal
signal
,
String
title
,
Type
type
);
public
abstract
void
show
(
RealSignal
signal
,
String
title
);
public
abstract
void
show
(
RealSignal
signal
,
String
title
,
Type
type
);
public
abstract
void
show
(
RealSignal
signal
,
String
title
,
PlatformImager
.
Type
type
,
int
z
);
public
abstract
void
save
(
RealSignal
signal
,
String
filename
);
public
abstract
void
save
(
RealSignal
signal
,
String
filename
,
Type
type
);
public
abstract
RealSignal
open
(
String
filename
);
public
abstract
String
getName
();
}
Event Timeline
Log In to Comment