Find median values in input or sequence of inputs
Find the median values in an input or sequence of inputs.
To track a set of points:
Create the vision.Median
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?.
returns an object,
medObj
= vision.MedianmedObj
, that computes the value and index of the maximum elements
in an input or a sequence of inputs.
sets properties using one or more name-value pairs. Enclose each property name in
quotes. For example, medObj
= vision.Median(Name,Value
)medObj =
vision.Median('Dimension','Column')
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)