Edit

class Input::Frames::FrameWriter

Represents the ability to write image frame data, for use as input with Vision AI scenario operations.

Members

~FrameWriter

Syntax: public inline virtual ~FrameWriter ( );

Destructs an instance of the FrameWriter class.

WriteFrame

Syntax: public inline void WriteFrame ( const uint8_t * data , size_t dataSizeInBytes );

Writes a single frame of image data to the underlying FrameSource.

Parameters

  • data The data buffer.

  • dataSizeInBytes The data buffer size in bytes

WriteFrame

Syntax: public inline void WriteFrame ( std::shared_ptr< Frame > frame );

Writes a single frame of image data to the underlying FrameSource.

Parameters

  • frame A single image frame.