FaceMaskDetection icon indicating copy to clipboard operation
FaceMaskDetection copied to clipboard

sample code for opencv dnn with caffe model

Open usadhukhan opened this issue 5 years ago • 1 comments

sample code for opencv dnn with caffe model

it is not working.

usadhukhan avatar Jul 25 '20 16:07 usadhukhan

it works with this

def getOutputsNames(net):
    layersNames = net.getLayerNames()
    # return [layersNames[i[0] - 1] for i in net.getUnconnectedOutLayersNames()]
    return ["loc_branch_concat", "cls_branch_concat"]

Alfex4936 avatar Jun 06 '22 03:06 Alfex4936