OpenCV AttributeError模块'cv2.cv2'没有属性'Tracker_create' [英] OpenCV AttributeError module 'cv2.cv2' has no attribute 'Tracker_create'

查看:202
本文介绍了OpenCV AttributeError模块'cv2.cv2'没有属性'Tracker_create'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试运行此代码,但出现属性错误.任何帮助将不胜感激.

I have tried to run this code but get an Attribute Error. Any help would be greatly appreciated.

    import cv2
    import sys

    (major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.')

    if __name__ == '__main__':

    # Set up tracker.
    # Instead of MIL, you can also use

    tracker_types = ['BOOSTING', 'MIL','KCF', 'TLD', 'MEDIANFLOW', 'CSRT', 'MOSSE']
    tracker_type = tracker_types[5]

    if int(minor_ver) < 3:
        tracker = cv2.cv2.Tracker_create(tracker_type)
    else:
        if tracker_type == 'BOOSTING':
            tracker = cv2.TrackerBoosting_create()
        if tracker_type == 'MIL':
            tracker = cv2.TrackerMIL_create()
        if tracker_type == 'KCF':
            tracker = cv2.TrackerKCF_create()
        if tracker_type == 'TLD':
            tracker = cv2.TrackerTLD_create()
        if tracker_type == 'MEDIANFLOW':
            tracker = cv2.TrackerMedianFlow_create()
        if tracker_type == 'CSRT':
            tracker = cv2.TrackerCSRT_create()
        if tracker_type == 'MOSSE':
            tracker = cv2.TrackerMOSSE_create()

    # Read video
    video = cv2.VideoCapture("./videos/chaplin.mp4")

    # Exit if video not opened.
    if not video.isOpened():
        print("Could not open video")
        sys.exit()

    # Read first frame.
    ok, frame = video.read()
    if not ok:
        print('Cannot read video file')
        sys.exit()

    # Define an initial bounding box
    bbox = (287, 23, 86, 320)

    # Uncomment the line below to select a different bounding box
    bbox = cv2.selectROI(frame, False)

    # Initialize tracker with first frame and bounding box
    ok = tracker.init(frame, bbox)

    while True:
        # Read a new frame
        ok, frame = video.read()
        if not ok:
            break

        # Start timer
        timer = cv2.getTickCount()

        # Update tracker
        ok, bbox = tracker.update(frame)

        # Calculate Frames per second (FPS)
        fps = cv2.getTickFrequency() / (cv2.getTickCount() - timer);

        # Draw bounding box
        if ok:
            # Tracking success
            p1 = (int(bbox[0]), int(bbox[1]))
            p2 = (int(bbox[0] + bbox[2]), int(bbox[1] + bbox[3]))
            cv2.rectangle(frame, p1, p2, (255,0,0), 2, 1)
        else :
            # Tracking failure
            cv2.putText(frame, "Tracking failure detected", (100,80), cv2.FONT_HERSHEY_SIMPLEX, 0.75,(0,0,255),2)

        # Display tracker type on frame
        cv2.putText(frame, tracker_type + " Tracker", (100,20), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50),2);

        # Display FPS on frame
        cv2.putText(frame, "FPS : " + str(int(fps)), (100,50), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50), 2);

        # Display result
        cv2.imshow("Tracking", frame)

        # Exit if ESC pressed
        k = cv2.waitKey(1) & 0xff
        if k == 27 : break

输出:

回溯(最近通话最近):文件"C:\ Users \ Jatin \ OpenCV-Object-Tracking \ index.py",第15行,在跟踪程序= cv2.cv2.Tracker_create(tracker_type)AttributeError:模块'cv2.cv2'没有属性'Tracker_create'

Traceback (most recent call last): File "C:\Users\Jatin\OpenCV-Object-Tracking\index.py", line 15, in tracker = cv2.cv2.Tracker_create(tracker_type) AttributeError: module 'cv2.cv2' has no attribute 'Tracker_create'

推荐答案

这取决于您安装了哪些OpenCV软件包和版本.

It depends on which packages of OpenCV and version you have installed.

我相信您需要 OpenCV 3.4 + 来运行这些模型.一些跟踪器型号在3.2和3.3中可用.脚本中的所有跟踪器在3.4中都可用

I believe you need OpenCV 3.4+ to run those models. Some tracker models are available in 3.2, and 3.3. All trackers in your script are available in 3.4

OpenCV软件包: opencv-python :此存储库包含OpenCV库的主要模块.

OpenCV packages: opencv-python: This repository contains the main modules of the OpenCV library.

opencv-contrib-python :opencv-contrib-python存储库包含主要模块和contrib模块

opencv-contrib-python: The opencv-contrib-python repository contains both the main modules along with the contrib modules

python -m pip安装opencv-contrib-python ,检查您是否具有3.4以上版本,并使用 pip show opencv .

python -m pip install opencv-contrib-python, check to see if you have 3.4+, with pip show opencv .

有关更多详细信息,请参见如何安装opencv

See how to install opencv for more details

这篇关于OpenCV AttributeError模块'cv2.cv2'没有属性'Tracker_create'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆