Class NonMaxBlockSearchRelaxed.Min
java.lang.Object
boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed
boofcv.alg.feature.detect.extract.NonMaxBlockSearchRelaxed.Min
- 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanCreate a new instance of this search algorithm.voidsearchBlock(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
-
Min
public Min()
-
-
Method Details
-
searchBlock
public void searchBlock(int x0, int y0, int x1, int y1) Description copied from interface:NonMaxBlock.SearchSearch 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.SearchCreate a new instance of this search algorithm. Useful for concurrent implementations
-