How can I overlay the results of the following DLib operation onto an OpenCV image?
dets = detector(image, 1)
print("Number of faces detected: {}".format(len(dets)))
for k, d in enumerate(dets):
shape = predictor(image, d)
I'd like to draw the chin detect in this image..
in the original code there is something like .add_overlay done to a glib window but I have a opencv image. Is there something like cv2.add_overlay(image, shape)?