Package boofcv.alg.filter.binary.impl
Class ThresholdBlockMean_F32
java.lang.Object
boofcv.alg.filter.binary.ThresholdBlockMean<GrayF32>
boofcv.alg.filter.binary.impl.ThresholdBlockMean_F32
- All Implemented Interfaces:
ThresholdBlock.BlockProcessor<GrayF32,GrayF32>
Implementation of
ThresholdBlockMean for input images of type GrayU8-
Field Summary
Fields inherited from class boofcv.alg.filter.binary.ThresholdBlockMean
a, b, blockHeight, blockWidth, thresholdFromLocalBlocks -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcomputeBlockStatistics(int x0, int y0, int width, int height, int indexStats, GrayF32 input, GrayF32 stats) Computes the min-max value inside a blockcopy()Creates a copy.voidthresholdBlock(int blockX0, int blockY0, GrayF32 input, GrayF32 stats, GrayU8 output) Thresholds all the pixels inside the specified blockMethods inherited from class boofcv.alg.filter.binary.ThresholdBlockMean
init, isDown
-
Constructor Details
-
ThresholdBlockMean_F32
public ThresholdBlockMean_F32(double scale, boolean down)
-
-
Method Details
-
thresholdBlock
Description copied from interface:ThresholdBlock.BlockProcessorThresholds all the pixels inside the specified block- Parameters:
blockX0- Block x-coordinateblockY0- Block y-coordinateinput- Input imageoutput- Output image
-
copy
Description copied from interface:ThresholdBlock.BlockProcessorCreates a copy. For concurrent code -
createStats
-
computeBlockStatistics
public void computeBlockStatistics(int x0, int y0, int width, int height, int indexStats, GrayF32 input, GrayF32 stats) Description copied from interface:ThresholdBlock.BlockProcessorComputes the min-max value inside a block- Parameters:
x0- lower bound pixel value of block, x-axisy0- upper bound pixel value of block, y-axiswidth- Block's widthheight- Block's heightindexStats- array index of statistics image pixelinput- Input image
-