Package adams.data.opencv.transformer
Class Blur
-
- All Implemented Interfaces:
CleanUpHandler
,Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,QuickInfoSupporter
,SizeOfHandler
,ImageTransformer<OpenCVImageContainer>
,FlowContextHandler
,Serializable
,Comparable
public class Blur extends AbstractOpenCVTransformer
Blurs the image using the normalized box filter.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#ga8c45db9afe636703801b0b2e440fce37
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-kernel-width <int> (property: kernelWidth) The width to use for the kernel (positive and odd integer). default: 3 minimum: 1
-kernel-height <int> (property: kernelHeight) The height to use for the kernel (positive and odd integer). default: 3 minimum: 1
-anchor-x <int> (property: anchorX) The X of the anchor use -1 for the center. default: -1
-anchor-y <int> (property: anchorY) The Y of the anchor, use -1 for the center. default: -1
-border-type <BORDER_CONSTANT|BORDER_REPLICATE|BORDER_REFLECT|BORDER_WRAP|BORDER_REFLECT_101|BORDER_TRANSPARENT|BORDER_REFLECT101|BORDER_DEFAULT|BORDER_ISOLATED> (property: borderType) The type of border to use. default: BORDER_DEFAULT
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected int
m_AnchorX
the X of the anchor.protected int
m_AnchorY
the Y of the anchor.protected BorderType
m_BorderType
the border type.protected int
m_KernelHeight
the kernel height.protected int
m_KernelWidth
the kernel width.-
Fields inherited from class adams.data.image.AbstractImageTransformer
m_FlowContext
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description Blur()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
anchorXTipText()
Returns the tip text for this property.String
anchorYTipText()
Returns the tip text for this property.String
borderTypeTipText()
Returns the tip text for this property.void
defineOptions()
Adds options to the internal list of options.protected OpenCVImageContainer[]
doTransform(OpenCVImageContainer img)
Performs no transformation at all, just returns the input.int
getAnchorX()
Returns the X of the anchor.int
getAnchorY()
Returns the Y of the anchor.BorderType
getBorderType()
Returns the type of border to use.int
getKernelHeight()
Returns the kernel height.int
getKernelWidth()
Returns the kernel width.String
getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.String
globalInfo()
Returns a string describing the object.String
kernelHeightTipText()
Returns the tip text for this property.String
kernelWidthTipText()
Returns the tip text for this property.void
setAnchorX(int value)
Sets the X of the anchor.void
setAnchorY(int value)
Sets the Y of the anchor.void
setBorderType(BorderType value)
Sets the type of border to use.void
setKernelHeight(int value)
Sets the kernel height.void
setKernelWidth(int value)
Sets the kernel width.-
Methods inherited from class adams.data.opencv.transformer.AbstractOpenCVTransformer
forCommandLine, forName, getTransformations
-
Methods inherited from class adams.data.image.AbstractImageTransformer
checkImage, cleanUp, compareTo, destroy, equals, getFlowContext, initialize, setFlowContext, shallowCopy, shallowCopy, transform
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, finishInit, getDefaultLoggingLevel, getOptionManager, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, getOptionManager, toCommandLine
-
-
-
-
Field Detail
-
m_KernelWidth
protected int m_KernelWidth
the kernel width.
-
m_KernelHeight
protected int m_KernelHeight
the kernel height.
-
m_AnchorX
protected int m_AnchorX
the X of the anchor.
-
m_AnchorY
protected int m_AnchorY
the Y of the anchor.
-
m_BorderType
protected BorderType m_BorderType
the border type.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceGlobalInfoSupporter
- Specified by:
globalInfo
in classAbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractOptionHandler
-
setKernelWidth
public void setKernelWidth(int value)
Sets the kernel width.- Parameters:
value
- the width
-
getKernelWidth
public int getKernelWidth()
Returns the kernel width.- Returns:
- the width
-
kernelWidthTipText
public String kernelWidthTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setKernelHeight
public void setKernelHeight(int value)
Sets the kernel height.- Parameters:
value
- the height
-
getKernelHeight
public int getKernelHeight()
Returns the kernel height.- Returns:
- the height
-
kernelHeightTipText
public String kernelHeightTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setAnchorX
public void setAnchorX(int value)
Sets the X of the anchor.- Parameters:
value
- the X
-
getAnchorX
public int getAnchorX()
Returns the X of the anchor.- Returns:
- the X
-
anchorXTipText
public String anchorXTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setAnchorY
public void setAnchorY(int value)
Sets the Y of the anchor.- Parameters:
value
- the Y
-
getAnchorY
public int getAnchorY()
Returns the Y of the anchor.- Returns:
- the Y
-
anchorYTipText
public String anchorYTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setBorderType
public void setBorderType(BorderType value)
Sets the type of border to use.- Parameters:
value
- the type
-
getBorderType
public BorderType getBorderType()
Returns the type of border to use.- Returns:
- the type
-
borderTypeTipText
public String borderTypeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfo
in interfaceQuickInfoSupporter
- Overrides:
getQuickInfo
in classAbstractImageTransformer<OpenCVImageContainer>
- Returns:
- null if no info available, otherwise short string
-
doTransform
protected OpenCVImageContainer[] doTransform(OpenCVImageContainer img)
Performs no transformation at all, just returns the input.- Specified by:
doTransform
in classAbstractImageTransformer<OpenCVImageContainer>
- Parameters:
img
- the image to process (can be modified, since it is a copy)- Returns:
- the copy of the image
-
-