【问题标题】:How to open videos which has .mpg format, in python如何在python中打开.mpg格式的视频
【发布时间】:2019-12-18 18:40:04
【问题描述】:

我正在对我的 .mpg 格式的视频进行对象跟踪我正在做的是我正在使用 OpenCV 来跟踪对象但是我在我的代码中打开它时遇到了一些问题,我已经附加了我的代码。

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', 'GOTURN', 'MOSSE', 'CSRT']
    tracker_type = tracker_types[1]
    print(tracker_type)



    if tracker_type == 'MIL':
            tracker = cv2.TrackerMIL_create()


    # Read video
    video = cv2.VideoCapture("Stroll.mpg")

    # 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

但我在这里面临的错误是:-

Could not open video
[ERROR:0] global C:\projects\opencv-python\opencv\modules\videoio\src\cap.cpp
(116) cv::VideoCapture::open VIDEOIO(CV_IMAGES): raised OpenCV exception:

OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\videoio
\src\cap_images.cpp:253: error: (-5:Bad argument) CAP_IMAGES: can't find
starting number (in the name of file): Stroll.mpg in function 'cv::icvExtractPattern'

我正在使用 python 3.6.8
OpenCV 版本 4.1.2

【问题讨论】:

    标签: python opencv video tracking


    【解决方案1】:

    可能是错误的路径 检查 Stroll.mpg 是否在您的工作目录中。如果是,请尝试使用 .mp4 视频。很可能路径错误或文件名拼写错误。 参考:https://answers.opencv.org/question/1965/cv2videocapture-cannot-read-from-file/

    【讨论】:

    • 感谢您的回复,是的,路径错误。
    【解决方案2】:

    确保您的 opencv 是用 ffmpeg 编译的,它提供了所有这些媒体解码器(如果没有,可能会丢失)。

    Someone with a similar problem 因为这个。

    【讨论】:

      猜你喜欢
      • 2015-10-01
      • 2023-03-26
      • 2012-10-17
      • 2014-10-21
      • 2017-10-19
      • 2012-11-27
      • 1970-01-01
      • 2013-08-20
      • 2016-08-06
      相关资源
      最近更新 更多