stop

open fun stop(attachedProcessors: Array<Processor>): Vision

Stop desired processors (Level 2).

This method should be called when hardware resources no longer need to be allocated to operating the cameras, and should have the option to be re-enabled with start().

Note: The VisionPortal is automatically closed at the end of the OpMode's run time, calling stop() or terminate() is not required at the end of an OpMode.

Passing no arguments will pause the Camera Stream (Level 3). Pausing the camera stream will automatically disable any running processors. Note this may take some very small time to resume the stream if start() is called again. If you don't plan on using the camera stream again, it is recommended to call terminate() instead.

Return

the vision instance

Parameters

attachedProcessors

Processor instances


open fun stop(): Vision

Stop all processors and pause the camera stream (Level 3).

Return

the vision instance