why AttributeError: module 'HandTrackingModule' has no attribute 'handDetector'
cap = cv2.VideoCapture(2)
cap.set(3, 1280)
cap.set(4, 720)
detector = htm.handDetector(detectionCon=0.85)
while True:
#1 Import gambar
success, img = cap.read()
img = cv2.flip(img, 1)