public interface MinMaxMethod<T extends Type<T> & Comparable<T>> extends ImageJPlugin, RichPlugin, SingletonPlugin
NB: An initialize(net.imglib2.img.Img<T>, T, T)
method must be called before performing any other
operations.
Modifier and Type | Method and Description |
---|---|
boolean |
checkInput()
Verifies method inputs
|
String |
getErrorMessage() |
T |
getMax() |
T |
getMin() |
int |
getNumThreads() |
long |
getProcessingTime() |
void |
initialize(Img<T> img)
Sets the provided Img as the target interval for computation.
|
void |
initialize(Img<T> img,
T min,
T max)
Sets the provided Img as the target interval for computation,
as well as initial min and max values.
|
void |
initialize(IterableInterval<T> interval)
Sets the target interval for computation.
|
void |
initialize(IterableInterval<T> interval,
T min,
T max)
Sets the target interval for computation, as well as initial
min and max values.
|
void |
initialize(RandomAccessibleInterval<T> interval)
Sets the target interval for computation.
|
void |
initialize(RandomAccessibleInterval<T> interval,
T min,
T max)
Sets the target interval for computation, as well as initial
min and max values.
|
boolean |
process()
Begins searching the target interval for minimum and
maximum values.
|
void |
setNumThreads()
Sets number of threads to default
|
void |
setNumThreads(int numThreads)
Sets number of threads to use
|
getIdentifier, log
context, getContext, setContext
compareTo, getPriority, setPriority
getInfo, setInfo
getLocation
getVersion
void initialize(Img<T> img, T min, T max)
void initialize(IterableInterval<T> interval, T min, T max)
void initialize(RandomAccessibleInterval<T> interval, T min, T max)
void initialize(Img<T> img)
void initialize(IterableInterval<T> interval)
void initialize(RandomAccessibleInterval<T> interval)
T getMin()
T getMax()
boolean process()
getErrorMessage()
boolean checkInput()
long getProcessingTime()
void setNumThreads()
void setNumThreads(int numThreads)
int getNumThreads()
String getErrorMessage()
Copyright © 2014–2022 ImageJ. All rights reserved.