Hello,
I'm running the PeopleTraker sample on the OAK-1.
The PeopleTrasker sample uses a callback. (code 1)
I'm trying to get it working without callbacks (using poll). (code 2)
I would like to use a video file on my PC in the same experiment as Code 1. Please tell me how to set it up.
Is it the code part of the (*) part?
Thank you.
===========================================================
with OakCamera(replay="videofile.mp4") as oak:
:
:
def cb(packet: TrackerPacket, vis: Visualizer):
:
:
oak.visualize(tracker.out.tracker, callback=cb)
oak.start(blocking=True)
===========================================================
[code 2]
===========================================================
color = oak.create_camera('color')
:
:
features = pipeline.create(dai.node.FeatureTracker) # Create new pipeline nodes
color.node.video.link(features.inputImage)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^(\*)
:
:
oak.start()
q = oak.device.getOutputQueue('features') # Create output queue after calling start()
while oak.running():
if q.has():
result = q.get()
oak.poll()
===========================================================