View Source Evision.BgSegm.BackgroundSubtractorCNT (Evision v0.1.34)
Summary
Functions
apply
apply
getBackgroundImage
getBackgroundImage
Returns if we're parallelizing the algorithm.
Returns maximum allowed credit for a pixel in history.
Returns number of frames with same pixel color to consider stable.
Returns if we're giving a pixel credit for being stable for a long time.
Sets if we're parallelizing the algorithm.
Sets the maximum allowed credit for a pixel in history.
Sets the number of frames with same pixel color to consider stable.
Sets if we're giving a pixel credit for being stable for a long time.
Types
@type t() :: %Evision.BgSegm.BackgroundSubtractorCNT{ref: reference()}
Type that represents an BgSegm.BackgroundSubtractorCNT
struct.
ref.
reference()
The underlying erlang resource variable.
Functions
@spec apply(t(), Evision.Mat.maybe_mat_in()) :: Evision.Mat.t() | {:error, String.t()}
apply
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- image:
Evision.Mat.t()
Keyword Arguments
- learningRate:
double
.
Return
- fgmask:
Evision.Mat.t()
.
Python prototype (for reference only):
apply(image[, fgmask[, learningRate]]) -> fgmask
@spec apply(t(), Evision.Mat.maybe_mat_in(), [{atom(), term()}, ...] | nil) :: Evision.Mat.t() | {:error, String.t()}
apply
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- image:
Evision.Mat.t()
Keyword Arguments
- learningRate:
double
.
Return
- fgmask:
Evision.Mat.t()
.
Python prototype (for reference only):
apply(image[, fgmask[, learningRate]]) -> fgmask
@spec getBackgroundImage(t()) :: Evision.Mat.t() | {:error, String.t()}
getBackgroundImage
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- backgroundImage:
Evision.Mat.t()
.
Python prototype (for reference only):
getBackgroundImage([, backgroundImage]) -> backgroundImage
@spec getBackgroundImage(t(), [{atom(), term()}, ...] | nil) :: Evision.Mat.t() | {:error, String.t()}
getBackgroundImage
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- backgroundImage:
Evision.Mat.t()
.
Python prototype (for reference only):
getBackgroundImage([, backgroundImage]) -> backgroundImage
Returns if we're parallelizing the algorithm.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- retval:
bool
Python prototype (for reference only):
getIsParallel() -> retval
Returns maximum allowed credit for a pixel in history.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- retval:
int
Python prototype (for reference only):
getMaxPixelStability() -> retval
Returns number of frames with same pixel color to consider stable.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- retval:
int
Python prototype (for reference only):
getMinPixelStability() -> retval
Returns if we're giving a pixel credit for being stable for a long time.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
Return
- retval:
bool
Python prototype (for reference only):
getUseHistory() -> retval
Sets if we're parallelizing the algorithm.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- value:
bool
Python prototype (for reference only):
setIsParallel(value) -> None
Sets the maximum allowed credit for a pixel in history.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- value:
int
Python prototype (for reference only):
setMaxPixelStability(value) -> None
Sets the number of frames with same pixel color to consider stable.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- value:
int
Python prototype (for reference only):
setMinPixelStability(value) -> None
Sets if we're giving a pixel credit for being stable for a long time.
Positional Arguments
- self:
Evision.BgSegm.BackgroundSubtractorCNT.t()
- value:
bool
Python prototype (for reference only):
setUseHistory(value) -> None