Hi,
in the linux python sdk example at:
https://github.com/edgeimpulse/linux-sdk-python/blob/master/examples/image/classify.py
at some point runner.classifier is being used (the following line of code):
for res, img in runner.classifier(videoCaptureDeviceId):
I have a imx477 HQ camera module (with the flat cable) for a raspberry pi 4.
The camera doesn’t show up in any of the ports, so i can’t use the port number as ‘videoCaptrueDeviceId’. Does anyone know how to make this camera show up in the ports? I read that the camera is automatically enabled, and it is also recommended to use picamera2 with this module. I can confirm that the camera works and is recognized by raspberry pi, because if i run rpicam-hello in bash, i can see that it’s recognized. The problem is, i’m not able to use runner.classifier with picamera2. I’m hoping that there is another way of using runner.classifier() or that there is a way to make this camera show up in raspi-config.
Also, I’m trying to show bounding boxes, are there perhaps some other examles that use different runner functions (compatible with picamera2) that show bounding boxes?