Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
dataThe data buffer.dataSizeInBytesThe 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
frameA single image frame.