caffe icon indicating copy to clipboard operation
caffe copied to clipboard

Documentation of output blob?

Open samuelwhiskeyjohnson opened this issue 11 months ago • 1 comments

    modelFile = "res10_300x300_ssd_iter_140000_fp16.caffemodel"
    configFile = "deploy.prototxt"
    net = cv2.dnn.readNetFromCaffe(configFile, modelFile)
    blob = cv2.dnn.blobFromImage(frame, 1.0, (300, 300), [104, 117, 123], False, False)
    net.setInput(blob)
    detections = net.forward()

# detections.shape == (1, 1, 200, 7)
detections[a, b, c, d]

Is there official documentation that explains what a, b, c, d are?

For example, how would I know detections[0, 0, 3, 2] is the 4th face's confidence level.

samuelwhiskeyjohnson avatar Jan 17 '25 05:01 samuelwhiskeyjohnson

这是来自QQ邮箱的假期自动回复邮件。   您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

dragonQian avatar Jan 17 '25 05:01 dragonQian