
손가락으로 글씨를 쓰고, 해당 수식을 gemini 모델로 계산하여 답을 나오게 하는 코드이다. handTrackingModule.py#Importing All the Required Librariesimport cv2import mediapipe as mpclass handDetector(): def __init__(self, mode = False, max_hands = 1, model_complexity = 1, min_det_conf = 0.7, min_tracking_confidence = 0.7): self.mode = mode self.max_hands = max_hands self.model_complexity = model_complexity ..