In [7]:
# pass the blob through the network and obtain the detections and
# predictions
print("[INFO] computing object detections...")
net.setInput(blob)
# Runs forward pass to compute outputs of layers listed in outBlobNames.
detections = net.forward()
print("[INFO] completed.")
[INFO] computing object detections...
[INFO] completed.