Class NonMaxBlockSearchStrict
java.lang.Object
boofcv.alg.feature.detect.extract.NonMaxBlockSearchStrict
- All Implemented Interfaces:
NonMaxBlock.Search
- Direct Known Subclasses:
NonMaxBlockSearchStrict.Max
,NonMaxBlockSearchStrict.Min
,NonMaxBlockSearchStrict.MinMax
Implementation of NonMaxBlock
which implements a strict maximum rule.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
static class
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
checkLocalMax
(int x_c, int y_c, float peakVal, GrayF32 img) protected void
checkLocalMin
(int x_c, int y_c, float peakVal, GrayF32 img) void
initialize
(boofcv.alg.feature.detect.extract.NonMaxBlock.Configuration configuration, GrayF32 image, @Nullable QueueCorner localMin, @Nullable QueueCorner localMax) Call before each time a search is started on a new imageMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.alg.feature.detect.extract.NonMaxBlock.Search
isDetectMaximums, isDetectMinimums, newInstance, searchBlock
-
Constructor Details
-
NonMaxBlockSearchStrict
public NonMaxBlockSearchStrict()
-
-
Method Details
-
initialize
public void initialize(boofcv.alg.feature.detect.extract.NonMaxBlock.Configuration configuration, GrayF32 image, @Nullable @Nullable QueueCorner localMin, @Nullable @Nullable QueueCorner localMax) Description copied from interface:NonMaxBlock.Search
Call before each time a search is started on a new image- Specified by:
initialize
in interfaceNonMaxBlock.Search
- Parameters:
configuration
- Describes how it should searchimage
- The image that is being searchedlocalMin
- Storage for local minimums. Can be null if not used.localMax
- Storage for local maximums. Can be null if not used.
-
checkLocalMax
-
checkLocalMin
-