teachablemachine-community
teachablemachine-community copied to clipboard
snippets/markdown/image/edgetpu/python.md Opencv example code doesn't swap color to BGR2RGB
The example EdgeTPU python code uses cv2.VideoCapture but doesn't convert from the default BGR format. Should the code have something like frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
before the classifier is called?