MaskBinaryPlugin
Binarization plugin for segmentation mask
Applies a mask binarization agains provided threshold. Plugin depends on MaskUploadPlugin that must be attached to the renderer to upload mask buffer in texture. It may be combined with other mask post-processing plugins. Order in which operation on mask are applied corresponds to the order in which plugins are attached to the renderer.
Extends
Constructors
new MaskBinaryPlugin()
new MaskBinaryPlugin(
thresh
,size
):MaskBinaryPlugin
Constructor
Parameters
• thresh: number
= 0.55
Foreground threshold
• size: Size
= ...
Size of segmentation mask
Returns
Overrides
Properties
loaded
loaded:
boolean
Loaded state
Inherited from
ordinal
ordinal:
number
Ordinal number
Inherited from
renderer?
protected
optional
renderer:Renderer
<SegmentationResult
>
Renderer loaded the plugin
Inherited from
shader?
protected
optional
shader:ShaderProgram
Binarization shader
size
protected
size:Size
Size of segmentation mask
thresh
protected
thresh:number
=0.55
Foreground threshold
Methods
dispose()
dispose():
void
Dispose video plugin
Returns
void
Inherited from
load()
load(
renderer
):Promise
<void
>
Initialize plugin
Initializes binarization shader program.
Parameters
• renderer: Renderer
<SegmentationResult
>
Renderer this plugin is attached to
Returns
Promise
<void
>
Promise resolving when initialization is finished
Overrides
setupCamera()
setupCamera(
ratio
,angle
):void
Set camera parameters
Could be overridden to adjust plugin’s pipeline.
Parameters
• ratio: number
Aspect ration of input video
• angle: number
Vertical field of view in radians
Returns
void
Inherited from
setupVideo()
setupVideo(
size
):void
Set video size
Could be overridden to adjust plugin’s pipeline.
Parameters
• size: Size
Resolution of input video
Returns
void
Inherited from
unload()
unload():
void
Reset plugin
Releases all resources initialized in load().
Returns
void
Overrides
update()
update(
result
,stream
):Promise
<void
>
Update segmentation masks
Updates segmentation mask applying binarization op.
Replaces maskTex
of tracks with the updated mask.
Parameters
• result: SegmentationResult
Results of video processing
• stream: HTMLCanvasElement
Captured video frame
Returns
Promise
<void
>