Class Median
- All Implemented Interfaces:
Provider<Channel>
,ProviderAsStack
Applies a median-filter with square kernel
- Author:
- Owen Feehan
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateFromChannel
(Channel channel) Creates aChannel
given the entity provided by the delegate.int
Kernel will be a square kernel of size(2*kernelHalfWidth+1)x(2*kernelHalfWidth+1)
void
setKernelHalfWidth
(int kernelHalfWidth) Kernel will be a square kernel of size(2*kernelHalfWidth+1)x(2*kernelHalfWidth+1)
Methods inherited from class org.anchoranalysis.image.bean.provider.ChannelProviderUnary
get, getChannel, setChannel
Methods inherited from class org.anchoranalysis.image.bean.provider.ChannelProvider
getAsStack
Methods inherited from class org.anchoranalysis.bean.initializable.InitializableBean
getInitialization, getLogger, getPropertyInitializer, initialize, initializeRecursive, initRecursiveWithInitializer, isInitialized, onInitialization
Methods inherited from class org.anchoranalysis.bean.AnchorBean
checkMisconfigured, describeBean, describeChildren, duplicateBean, fields, findFieldsOfClass, getBeanName, getLocalPath, localise, toString
-
Constructor Details
-
Median
public Median()
-
-
Method Details
-
createFromChannel
Description copied from class:ChannelProviderUnary
Creates aChannel
given the entity provided by the delegate.- Specified by:
createFromChannel
in classChannelProviderUnary
- Parameters:
channel
- the entity provided by the delegate.- Returns:
- the created
Channel
that is returned by the provider. - Throws:
ProvisionFailedException
- if the provider cannot complete successfully.
-
getKernelHalfWidth
public int getKernelHalfWidth()Kernel will be a square kernel of size(2*kernelHalfWidth+1)x(2*kernelHalfWidth+1)
-
setKernelHalfWidth
public void setKernelHalfWidth(int kernelHalfWidth) Kernel will be a square kernel of size(2*kernelHalfWidth+1)x(2*kernelHalfWidth+1)
-