使用 opencv 绘制多个视频时出现此错误?

如何解决使用 opencv 绘制多个视频时出现此错误?

我正在尝试在多个视频捕获流上绘制边界框。在更改下面的代码以允许它处于 for 循环中后,我收到此错误(首先不确定这是否有效)。

有人建议我将视频捕获的数据放入一个 numpy 数组而不是列表中以避免错误,但我不确定。

这是错误:

Traceback (most recent call last):
  File "C:\Users\abdul\PythonProjects\Social-distance-detection-mastera\social_distance_detector.py",line 119,in <module>
    cv2.rectangle(frame,(startX,startY),(endX,endY),color,2)
TypeError: an integer is required (got type tuple)
[Finished in 5.2s with exit code 1]
[shell_cmd: python -u "C:\Users\abdul\PythonProjects\Social-distance-detection-mastera\social_distance_detector.py"]
[dir: C:\Users\abdul\PythonProjects\Social-distance-detection-mastera]
[path: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\libnvvp;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;D:\oracle\product\10.2.0\db_1\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Brackets\command;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;D:\xampp\php;C:\ProgramData\ComposerSetup\bin;d:\Program Files\Git\cmd;d:\Program Files\Git\mingw64\bin;d:\Program Files\Git\usr\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.1\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;d:\Users\abdul\Anaconda3;d:\Users\abdul\Anaconda3\Library\mingw-w64\bin;d:\Users\abdul\Anaconda3\Library\usr\bin;d:\Users\abdul\Anaconda3\Library\bin;d:\Users\abdul\Anaconda3\Scripts;C:\Users\abdul\AppData\Local\Microsoft\WindowsApps;C:\Users\abdul\AppData\Roaming\Composer\vendor\bin;C:\Users\abdul\AppData\Local\GitHubDesktop\bin;%DASHLANE_DLL_DIR%;C:\Users\abdul\AppData\Local\Microsoft\WindowsApps;]

发生在这个块中:

for frame) in streams:
            cv2.rectangle(frame,2)
            cv2.circle(frame,(cX,cY),5,1)

我在互联网上找到了一个建议,可以像这样在 args 中表达:

for frame in streams:
            cv2.rectangle(frame,int(startX,int(endX,1)

但我得到了这个错误:

    Traceback (most recent call last):
  File "C:\Users\abdul\PythonProjects\Social-distance-detection-mastera\social_distance_detector.py",2)
ValueError: int() base must be >= 2 and <= 36,or 0
[Finished in 2.8s with exit code 1]
[shell_cmd: python -u "C:\Users\abdul\PythonProjects\Social-distance-detection-mastera\social_distance_detector.py"]
[dir: C:\Users\abdul\PythonProjects\Social-distance-detection-mastera]
[path: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\libnvvp;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;D:\oracle\product\10.2.0\db_1\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Brackets\command;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;D:\xampp\php;C:\ProgramData\ComposerSetup\bin;d:\Program Files\Git\cmd;d:\Program Files\Git\mingw64\bin;d:\Program Files\Git\usr\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.1\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;d:\Users\abdul\Anaconda3;d:\Users\abdul\Anaconda3\Library\mingw-w64\bin;d:\Users\abdul\Anaconda3\Library\usr\bin;d:\Users\abdul\Anaconda3\Library\bin;d:\Users\abdul\Anaconda3\Scripts;C:\Users\abdul\AppData\Local\Microsoft\WindowsApps;C:\Users\abdul\AppData\Roaming\Composer\vendor\bin;C:\Users\abdul\AppData\Local\GitHubDesktop\bin;%DASHLANE_DLL_DIR%;C:\Users\abdul\AppData\Local\Microsoft\WindowsApps;]

我是个菜鸟,所以我把完整的代码放在这一行后面以防万一它有帮助

# USAGE
# python social_distance_detector.py --input pedestrians.mp4
# python social_distance_detector.py --input pedestrians.mp4 --output output.avi

# import the necessary packages
from TheLazyCoder import social_distancing_config as config
from TheLazyCoder.detection import detect_people
from scipy.spatial import distance as dist
import numpy as np
import argparse
import imutils
import cv2
import os

# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i","--input",type=str,default="",help="path to (optional) input video file")
ap.add_argument("-o","--output",help="path to (optional) output video file")
ap.add_argument("-d","--display",type=int,default=1,help="whether or not output frame should be displayed")
args = vars(ap.parse_args())

# load the COCO class labels our YOLO model was trained on
labelsPath = os.path.sep.join([config.MODEL_PATH,"coco.names"])
LABELS = open(labelsPath).read().strip().split("\n")

# derive the paths to the YOLO weights and model configuration
weightsPath = os.path.sep.join([config.MODEL_PATH,"yolov3.weights"])
configPath = os.path.sep.join([config.MODEL_PATH,"yolov3.cfg"])

# load our YOLO object detector trained on COCO dataset (80 classes)
print("[INFO] loading YOLO from disk...")
net = cv2.dnn.readNetFromDarknet(configPath,weightsPath)

# check if we are going to use GPU
if config.USE_GPU:
    # set CUDA as the preferable backend and target
    print("[INFO] setting preferable backend and target to CUDA...")
    net.setPreferableBackend(cv2.dnn.DNN_BACKEND_CUDA)
    net.setPreferableTarget(cv2.dnn.DNN_TARGET_CUDA)

# determine only the *output* layer names that we need from YOLO
ln = net.getLayerNames()
ln = [ln[i[0] - 1] for i in net.getUnconnectedOutLayers()]

# initialize the video stream and pointer to output video file
print("[INFO] accessing video stream...")
vs =[ 
cv2.VideoCapture(0,cv2.CAP_DSHOW),cv2.VideoCapture(0,cv2.CAP_DSHOW)
]

writer = None

# loop over the frames from the video stream
while True:
    # read the next frame from the file
    streams=[]
    for cap in vs:
        grabbed,frame = cap.read()
        streams.append([grabbed,frame])


    

    # if the frame was not grabbed,then we have reached the end
    # of the stream
    if not grabbed:
        break

    # resize the frame and then detect people (and only people) in it
    
    frame = imutils.resize(frame,width=700)
    results = detect_people(frame,net,ln,personIdx=LABELS.index("person"))

    # initialize the set of indexes that violate the minimum social
    # distance
    violate = set()

    # ensure there are *at least* two people detections (required in
    # order to compute our pairwise distance maps)
    if len(results) >= 2:
        # extract all centroids from the results and compute the
        # Euclidean distances between all pairs of the centroids
        centroids = np.array([r[2] for r in results])
        D = dist.cdist(centroids,centroids,metric="euclidean")

        # loop over the upper triangular of the distance matrix
        for i in range(0,D.shape[0]):
            for j in range(i + 1,D.shape[1]):
                # check to see if the distance between any two
                # centroid pairs is less than the configured number
                # of pixels
                if D[i,j] < config.MIN_DISTANCE:
                    # update our violation set with the indexes of
                    # the centroid pairs
                    violate.add(i)
                    violate.add(j)

    # loop over the results
    for (i,(prob,bbox,centroid)) in enumerate(results):
        # extract the bounding box and centroid coordinates,then
        # initialize the color of the annotation
        (startX,startY,endX,endY) = bbox
        (cX,cY) = centroid
        color = (0,255,0)

        # if the index pair exists within the violation set,then
        # update the color
        if i in violate:
            color = (0,255)

        # draw (1) a bounding box around the person and (2) the
        # centroid coordinates of the person,for frame in streams:
            cv2.rectangle(frame,1)

    # draw the total number of social distancing violations on the
    # output frame
    for frame in streams:
        text = "Social Distancing Violations: {}".format(len(violate))
        cv2.putText(frame,text,(10,frame.shape[0] - 25),cv2.FONT_HERSHEY_SIMPLEX,0.85,(0,255),3)

    # check to see if the output frame should be displayed to our
    # screen
    for number,(grabbed,frame) in enumerate(streams):
        if args["display"] > 0:
        # show the output frame
            cv2.imshow(f'Cam {number}',frame)

    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

    # if an output video file path has been supplied and the video
    # writer has not been initialized,do so now
    if args["output"] != "" and writer is None:
        # initialize our video writer
        fourcc = cv2.VideoWriter_fourcc(*"MJPG")
        writer = cv2.VideoWriter(args["output"],fourcc,25,(frame.shape[1],frame.shape[0]),True)

    # if the video writer is not None,write the frame to the output
    # video file
    if writer is not None:
        writer.write(frame)

解决方法

您可以从 bbox 获得 startX、startY、endX、endY。我们不知道 bbox 是什么样子,因为这里没有显示 detect_people 函数。你得到的错误是说这些值之一, startX,startY,endX,endY 可能是一个元组而不是单个数字。只是为了检查,在调用 cv2.rectangle 之前打印出所有四个值。另外,我认为您误解了 int 转换建议。它应该是这样的:

cv2.rectangle(frame,(int(startX),int(startY)),(int(endX),int(endY)),color,2)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-
参考1 参考2 解决方案 # 点击安装源 协议选择 http:// 路径填写 mirrors.aliyun.com/centos/8.3.2011/BaseOS/x86_64/os URL类型 软件库URL 其他路径 # 版本 7 mirrors.aliyun.com/centos/7/os/x86
报错1 [root@slave1 data_mocker]# kafka-console-consumer.sh --bootstrap-server slave1:9092 --topic topic_db [2023-12-19 18:31:12,770] WARN [Consumer clie
错误1 # 重写数据 hive (edu)&gt; insert overwrite table dwd_trade_cart_add_inc &gt; select data.id, &gt; data.user_id, &gt; data.course_id, &gt; date_format(
错误1 hive (edu)&gt; insert into huanhuan values(1,&#39;haoge&#39;); Query ID = root_20240110071417_fe1517ad-3607-41f4-bdcf-d00b98ac443e Total jobs = 1
报错1:执行到如下就不执行了,没有显示Successfully registered new MBean. [root@slave1 bin]# /usr/local/software/flume-1.9.0/bin/flume-ng agent -n a1 -c /usr/local/softwa
虚拟及没有启动任何服务器查看jps会显示jps,如果没有显示任何东西 [root@slave2 ~]# jps 9647 Jps 解决方案 # 进入/tmp查看 [root@slave1 dfs]# cd /tmp [root@slave1 tmp]# ll 总用量 48 drwxr-xr-x. 2
报错1 hive&gt; show databases; OK Failed with exception java.io.IOException:java.lang.RuntimeException: Error in configuring object Time taken: 0.474 se
报错1 [root@localhost ~]# vim -bash: vim: 未找到命令 安装vim yum -y install vim* # 查看是否安装成功 [root@hadoop01 hadoop]# rpm -qa |grep vim vim-X11-7.4.629-8.el7_9.x
修改hadoop配置 vi /usr/local/software/hadoop-2.9.2/etc/hadoop/yarn-site.xml # 添加如下 &lt;configuration&gt; &lt;property&gt; &lt;name&gt;yarn.nodemanager.res