Hi everyone,
Our project just changed all the cameras to the latest OAK 4S, so I am pretty much refactoring my codelines by following the V3 practice.
For this part:
xout = pipeline.create(dai.node.XLinkOut)
xout.setStreamName('end')
script.outputs['end'].link(xout.input)
It points out an error:
xout = pipeline.create(dai.node.XLinkOut)
^^^^^^^^^^^^^^^^^
AttributeError: module 'depthai.node' has no attribute 'XLinkOut'
I tried to go through the official docs as much as I can but didn't really find a solution for this (maybe I was not careful enough when digging through these new knowledge 🫣), but this page didn't show a new way to create a XLinkOut
I feel I am going very slow for this now so would like some help from you guys!
Cheers,
Austin