Class NonMaxBlockSearchRelaxed.Max
java.lang.Object
boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed
boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed.Max
- All Implemented Interfaces:
NonMaxBlock.Search
- Enclosing class:
- NonMaxBlockSearchRelaxed
-
Nested Class Summary
Nested classes/interfaces inherited from class boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed
NonMaxBlockSearchRelaxed.Max, NonMaxBlockSearchRelaxed.Min, NonMaxBlockSearchRelaxed.MinMax
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
Create a new instance of this search algorithm.void
searchBlock
(int x0, int y0, int x1, int y1) Search the image for local max/min inside the specified regionMethods inherited from class boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed
checkLocalMax, checkLocalMin, initialize
-
Constructor Details
-
Max
public Max()
-
-
Method Details
-
searchBlock
public void searchBlock(int x0, int y0, int x1, int y1) Description copied from interface:NonMaxBlock.Search
Search the image for local max/min inside the specified region- Parameters:
x0
- lower extent X (inclusive)y0
- lower extent Y (inclusive)x1
- upper extent X (exclusive)y1
- upper extent Y (exclusive)
-
isDetectMinimums
public boolean isDetectMinimums() -
isDetectMaximums
public boolean isDetectMaximums() -
newInstance
Description copied from interface:NonMaxBlock.Search
Create a new instance of this search algorithm. Useful for concurrent implementations
-