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 intm_AnchorXthe X of the anchor.protected intm_AnchorYthe Y of the anchor.protected BorderTypem_BorderTypethe border type.protected intm_KernelHeightthe kernel height.protected intm_KernelWidththe 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 StringanchorXTipText()Returns the tip text for this property.StringanchorYTipText()Returns the tip text for this property.StringborderTypeTipText()Returns the tip text for this property.voiddefineOptions()Adds options to the internal list of options.protected OpenCVImageContainer[]doTransform(OpenCVImageContainer img)Performs no transformation at all, just returns the input.intgetAnchorX()Returns the X of the anchor.intgetAnchorY()Returns the Y of the anchor.BorderTypegetBorderType()Returns the type of border to use.intgetKernelHeight()Returns the kernel height.intgetKernelWidth()Returns the kernel width.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.StringglobalInfo()Returns a string describing the object.StringkernelHeightTipText()Returns the tip text for this property.StringkernelWidthTipText()Returns the tip text for this property.voidsetAnchorX(int value)Sets the X of the anchor.voidsetAnchorY(int value)Sets the Y of the anchor.voidsetBorderType(BorderType value)Sets the type of border to use.voidsetKernelHeight(int value)Sets the kernel height.voidsetKernelWidth(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:
globalInfoin interfaceGlobalInfoSupporter- Specified by:
globalInfoin classAbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin 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:
getQuickInfoin interfaceQuickInfoSupporter- Overrides:
getQuickInfoin 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:
doTransformin classAbstractImageTransformer<OpenCVImageContainer>- Parameters:
img- the image to process (can be modified, since it is a copy)- Returns:
- the copy of the image
-
-