When using Python,
the openCV function
cv.HaarDetectObjects()
returns an object found along with a detection score.
If I use the opencv2 function instead,
cv2.CascadeClassifier.detectMultiScale()
I get the detected object, but no score. This makes it difficult to get a good "confidence" measure of the detection.
Is there a way to get that somehow, using CV2?