91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python對視頻畫框標記后保存的方法

發布時間:2020-08-29 23:28:52 來源:腳本之家 閱讀:273 作者:別說話寫代碼 欄目:開發技術

需要畫框取消注釋rectangle

import cv2
import os,sys,shutil
import numpy as np
 
# Open the input movie file, input the filepath as
input_filepath = sys.argv[1]
input_movie = cv2.VideoCapture(input_filepath)
length = int(input_movie.get(cv2.CAP_PROP_FRAME_COUNT))
 
#設置output
output_movie = cv2.VideoWriter(input_filepath.replace("mp4","avi").replace("input","output"), cv2.VideoWriter_fourcc('D', 'I', 'V', 'X'), 25, (1280, 720))
 
# Initialize some variables
frame_number = 0
 
while True:
 # Grab a single frame of video
 ret, frame = input_movie.read()
 
 frame_number += 1
 
 # Quit when the input video file ends
 if not ret:
  break
 
 # Draw a box around the body: input the top left point(x,y) and bottom right point(x,y)
 #cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2)
 
 # Write the resulting image to the output video file
 print("Writing frame {} / {}".format(frame_number, length))
 output_movie.write(frame)
 
# All done!
input_movie.release()
cv2.destroyAllWindows()

以上這篇python對視頻畫框標記后保存的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

自贡市| 黑龙江省| 台安县| 遂宁市| 郧西县| 双辽市| 大同市| 高雄市| 安阳市| 曲麻莱县| 宣汉县| 黄梅县| 阳山县| 教育| 平和县| 连平县| 阳原县| 巨野县| 自贡市| 青海省| 根河市| 上杭县| 蓬溪县| 彭山县| 谷城县| 东莞市| 远安县| 合肥市| 铁岭市| 昌平区| 张北县| 中山市| 博湖县| 策勒县| 重庆市| 萨嘎县| 永春县| 中宁县| 建昌县| 自治县| 舒兰市|