Package boofcv.abst.filter
Class FilterImageReflection<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
java.lang.Object
boofcv.abst.filter.FilterImageReflection<Input,Output>
- All Implemented Interfaces:
FilterImageInterface<Input,Output>
public class FilterImageReflection<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
extends Object
implements FilterImageInterface<Input,Output>
Turns functions into implementations of
FilterImageInterface Wraps around any function which has two images as input and output.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintHow many pixels are not processed along the x-axis border, left and right.intHow many pixels are not processed along the y-axis border, top and bottom.Specifies the input image typeSpecifies the output image typevoidProcesses the input image and writes the results to the output image.
-
Constructor Details
-
FilterImageReflection
-
FilterImageReflection
-
-
Method Details
-
process
Description copied from interface:FilterImageInterfaceProcesses the input image and writes the results to the output image. -
getBorderX
public int getBorderX()Description copied from interface:FilterImageInterfaceHow many pixels are not processed along the x-axis border, left and right.- Specified by:
getBorderXin interfaceFilterImageInterface<Input extends ImageGray<Input>,Output extends ImageGray<Output>> - Returns:
- Border size in pixels.
-
getBorderY
public int getBorderY()Description copied from interface:FilterImageInterfaceHow many pixels are not processed along the y-axis border, top and bottom.- Specified by:
getBorderYin interfaceFilterImageInterface<Input extends ImageGray<Input>,Output extends ImageGray<Output>> - Returns:
- Border size in pixels.
-
getInputType
Description copied from interface:FilterImageInterfaceSpecifies the input image type- Specified by:
getInputTypein interfaceFilterImageInterface<Input extends ImageGray<Input>,Output extends ImageGray<Output>> - Returns:
- Input image type.
-
getOutputType
Description copied from interface:FilterImageInterfaceSpecifies the output image type- Specified by:
getOutputTypein interfaceFilterImageInterface<Input extends ImageGray<Input>,Output extends ImageGray<Output>> - Returns:
- Output image type.
-