Files
mediapipe/mediapipe
MediaPipe TeamandCopybara-Service be546d22fc Update test to reflect the recommended graph construction style:
First, graph inputs and their names:
  - Makes it clear what inputs graph has
  - Indirectly demands for type specification e.g. Stream<AnyType> a = graph.In(0); vs Stream<int> a = graph.In(0).Cast<int>();
Then graph nodes
  - Nodes are added and used as they needed
  - One node is not mixed in other nodes, only its outputs
  - Indirectly demands for type specification e.g. Stream<AnyType> a = node.Out(0); vs Stream<int> a = node.Out(0).Cast<int>();
Then graph outputs
  - Makes it clear what outputs graph has

The recommended structure keep C++ graph similar to pbtxt representation.

PiperOrigin-RevId: 504701023
2023-01-25 17:13:17 -08:00
..
2023-01-11 14:24:00 -08:00
2023-01-24 12:18:15 -08:00
2022-12-13 16:04:00 -08:00
2023-01-24 23:16:21 -08:00
2022-12-12 21:30:31 -08:00
2023-01-25 10:33:09 -08:00
2023-01-17 15:51:07 -08:00
2022-11-10 18:06:35 -08:00
2022-05-05 19:57:20 +00:00