ZachJaison

  • 27 Feb
  • Joined Jun 13, 2024
  • 0 best answers
  • Hi @ZachJaison
    You are still sending the frames, you're just not visualizing them.
    While this does lower the CPU consumption (still at 100% for whatever reason 🤔 ) it still utilizes the bandwidth. To stop sending frames, remove the link in the pipeline.

    cam_rgb.preview.link(xout_rgb.input) - also remove the XlinkOut node and the host side:

    ZachJaison q_rgb = device.getOutputQueue("rgb")

    Thanks,
    Jaka

    • Hi @ZachJaison

      1. Have you tried UTF-8 instead of acii?
      2. By process you mean? The script node is pretty slow for large data manipulations since the CPU is not very performant. But just passing frames through like you are doing currently is fine because only the pointer is passed on. But don't expect to do CV2 operations on it.

      Thanks,
      Jaka