import cv2

# 設定 ROI 的座標範圍
rect = ((220, 20), (370, 190))
(left, top), (right, bottom) = rect

# 自訂一個取出子畫面的函數
def roiarea(frame):
    return frame[top:bottom, left:right]

# 自訂一個將 ROI 區域的資料貼回原本畫面的函數 
def replaceroi(frame, roi):
    frame[top:bottom, left:right] = roi
    return frame

cap = cv2.VideoCapture(0)
ratio = cap.get(cv2.CAP_PROP_FRAME_WIDTH) / cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
WIDTH = 400
HEIGHT = int(WIDTH / ratio)

while True:
    ret, frame = cap.read()
    frame = cv2.resize(frame, (WIDTH, HEIGHT))
    frame = cv2.rotate(frame, rotateCode = 1)
    frame = cv2.flip(frame, 1)

    # 取出子畫面
    roi = roiarea(frame)
    roi = cv2.cvtColor(roi, cv2.COLOR_BGR2HSV)

    # 將處理完的子畫面貼回到原本畫面中
    frame = replaceroi(frame, roi)

    # 在 ROI 範圍處畫個框
    cv2.rectangle(frame, rect[0], rect[1], (0,0,255), 2)

    cv2.imshow('frame', frame)
    
    if cv2.waitKey(1) == 27:
        cv2.destroyAllWindows()
        break