79275601

Date: 2024-12-12 15:08:41
Score: 0.5
Natty:
Report link

Instead of

blobFromImage(frame, 1.0, Size(640, 480), Scalar(), true, false);

Try

Mat blob = blobFromImage(frame, 1/127.5, Size(300, 300), Scalar(127.5, 127.5, 127.5), true, false);
net.setInput(blob);
Mat detections = net.forward();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Moudhaffer Bouallegui