第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Python 中調(diào)整一個(gè)小的 OpenCV 視頻捕獲窗口的大小?

我正在使用 tensorflow 制作剪刀石頭布游戲,用戶可以通過(guò)網(wǎng)絡(luò)攝像頭玩電腦,但網(wǎng)絡(luò)攝像頭圖像太小,如下所示:屏幕截圖這是我使用 OpenCV 的片段:cap = cv2.VideoCapture(0)prev_move = Nonewhile True:    ret, frame = cap.read()    if not ret:        continue    # rectangle for user to play    cv2.rectangle(frame, (100, 100), (500, 500), (255, 255, 255), 2)    # rectangle for computer to play    cv2.rectangle(frame, (800, 100), (1200, 500), (255, 255, 255), 2)    # extract the region of image within the user rectangle    roi = frame[100:500, 100:500]    img = cv2.cvtColor(roi, cv2.COLOR_BGR2RGB)    img = cv2.resize(img, (227, 227))    # predict the move made    pred = model.predict(np.array([img]))    move_code = np.argmax(pred[0])    user_move_name = mapper(move_code)    # predict the winner (human vs computer)    if prev_move != user_move_name:        if user_move_name != "none":            computer_move_name = choice(['rock', 'paper', 'scissors'])            winner = calculate_winner(user_move_name, computer_move_name)        else:            computer_move_name = "none"            winner = "Waiting..."    prev_move = user_move_name    # display the information    font = cv2.FONT_HERSHEY_SIMPLEX    cv2.putText(frame, "Your Move: " + user_move_name,                (50, 50), font, 1.2, (255, 255, 255), 2, cv2.LINE_AA)    cv2.putText(frame, "Computer's Move: " + computer_move_name,                (750, 50), font, 1.2, (255, 255, 255), 2, cv2.LINE_AA)    cv2.putText(frame, "Winner: " + winner,                (400, 600), font, 2, (0, 0, 255), 4, cv2.LINE_AA)    if computer_move_name != "none":        icon = cv2.imread(            "{}.png".format(computer_move_name))        icon = cv2.resize(icon, (400, 400))        frame[100:500, 800:1200] = icon    cv2.imshow("Rock Paper Scissors", frame)    k = cv2.waitKey(10)    if k == ord('q'):        breakcap.release()cv2.destroyAllWindows()我的網(wǎng)絡(luò)攝像頭有問(wèn)題嗎?我嘗試調(diào)整框架大小,但它不起作用。
查看完整描述

1 回答

?
Cats萌萌

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超9個(gè)贊

您可以使用以下方法調(diào)整大?。?/p>


width = 1500

height = 1080

dim = (width, height)


frame = cv2.resize(frame, dim, interpolation=cv2.INTER_AREA)


查看完整回答
反對(duì) 回復(fù) 2022-12-20
  • 1 回答
  • 0 關(guān)注
  • 335 瀏覽
慕課專欄
更多

添加回答

了解更多

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)