Can anyone describe me about this code. This code is small part for count the number of finger after done some preprocessing and get contour, hull and defects:
if ((startCircle.Center.Y < box.center.Y || depthCircle.Center.Y < box.center.Y) && (startCircle.Center.Y < depthCircle.Center.Y) && (Math.Sqrt(Math.Pow(startCircle.Center.X – depthCircle.Center.X, 2) + Math.Pow(startCircle.Center.Y – depthCircle.Center.Y, 2)) > box.size.Height / 6.5))
I find that code here: http://www.andol.info/hci/1984.htm But how can be like that? especially at the end of code its devide 6.5, what is mean?
Thank you.