You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reason:invalid parameter in cv2.ellipse2Poly() in fn.py
raw code:
line 214 in fn.py : polygon = cv2.ellipse2Poly((int(mX),int(mY)), (int(length/2), stickwidth), int(angle), 0, 360, 1)
stickwidth is a float tensor which is not suitable for param.axes in cv2.ellipse2Poly(), so l tried to turn "stickwidth" to "int (stickwidth)",
thus promising code running. but this may affect the pattern of skeleton
The text was updated successfully, but these errors were encountered:
reason:invalid parameter in cv2.ellipse2Poly() in fn.py
raw code:
stickwidth is a float tensor which is not suitable for param.axes in cv2.ellipse2Poly(), so l tried to turn "stickwidth" to "int (stickwidth)",
thus promising code running. but this may affect the pattern of skeleton
The text was updated successfully, but these errors were encountered: