PacketRateCalculator: fixed doc string.

This commit is contained in:
Stepan Dyatkovskiy (kaomoneus) 2022-08-25 17:30:26 +04:00
parent e4d7d8605c
commit 0b2ad1dc9a

View File

@ -24,11 +24,10 @@ using namespace mediapipe;
/*** /***
* PacketRateCalculator allows to calculate rate of incoming packages. * PacketRateCalculator allows to calculate rate of incoming packages.
* E.g. when you want to extract FPS, or any other processing rate. * E.g. when you want to extract FPS, or any other processing rate.
* As input it accepts any packets stream. * - As input it accepts any packets stream.
* As output it emits rate (floating point scalar), namely amount of packets per second based * - As output it emits rate (floating point scalar), namely amount of packets per second based
* calculation of current packet and previous packet. * calculation of current packet and previous packet.
* * - For very first packet it emits empty packet.
* For very first packet it emits empty packet.
* *
* Usage example: * Usage example:
* node { * node {