vision.LocalMaximaFinder
(Removed) Find local maxima in matrices
function has been
removed. Use the vision.LocalMaximaFinder
houghpeaks
or max
functions to find the local maxima, instead.
Description
To find local maxima in matrices.
Create the
vision.LocalMaximaFinder
object and set its properties.Call the object with arguments, as if it were a function.
To learn more about how System objects work, see What Are System Objects?
Creation
Syntax
Description
returns a local maxima finder System object, LMaxFinder
= vision.LocalMaximaFinderH
, that
finds local maxima in input matrices.
returns a local maxima finder object with the LMaxFinder
= vision.LocalMaximaFinder(maxnum
,neighborsize
)MaximumNumLocalMaxima
property set to maxnum
, NeighborhoodSize
property set to
neighborsize
, and other specified properties set to the specified
values.
sets properties using one or more name-value pairs. Enclose each property name in
quotes. For example, LMaxFinder
= vision.LocalMaximaFinder(Name,Value
)LMaxFinder =
vision.LocalMaximaFinder('ThresholdSource','Property')
Properties
Usage
Description
Input Arguments
Output Arguments
Object Functions
To use an object function, specify the
System object™ as the first input argument. For
example, to release system resources of a System object named obj
, use
this syntax:
release(obj)
Examples
Extended Capabilities
Version History
Introduced in R2012bSee Also
hough
| houghpeaks
| max
| vision.Maximum