Face-Recogntion-Detection icon indicating copy to clipboard operation
Face-Recogntion-Detection copied to clipboard

Calculation uses width instead of height?

Open pakdev opened this issue 2 years ago • 0 comments

According to your article: image

However, your code divides by width: Distance1 = 11.5*(img.shape[1]/float(w))

Shouldn't that be: Distance1 = 11.5*(img.shape[1]/float(h))

pakdev avatar Nov 02 '21 19:11 pakdev