简体   繁体   English

Python-OpenCV --F函数错误 - 找不到正确的目录

[英]Python-OpenCV --F Function error--not finding right dir

Am trying to put a timelapse on my OpenCV code but it seems i am doing something that is not right and i don't know why i have the error. 我试图在我的OpenCV代码上设置游戏中时光倒流,但似乎我正在做一些不正确的事情,我不知道为什么我有错误。 The erorr i got is for this line: filename = f"{timelapse_img_dir}/{i}.jpg" What should i do in order not to have an error? 我得到的是这行: filename = f"{timelapse_img_dir}/{i}.jpg"我该怎么办才能没有错误?

This is the error i have from my IDE: 这是我的IDE中的错误:

File "/Users/Dropbox/OpenCV/src/timelapse.py", line 34
    filename        = f"{timelapse}/{i}.jpg"
                                           ^
SyntaxError: invalid syntax
[Finished in 0.1s with exit code 1]
[shell_cmd: python -u "/Users/Dropbox/OpenCV/src/timelapse.py"]
[dir: /Users/Dropbox/OpenCV/src]
[path: /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin]

My code: 我的代码:

import os
import numpy as np
import cv2
import time
import datetime

from utils import CFEVideoConf, image_resize
import glob

cap = cv2.VideoCapture(0)


frames_per_seconds = 20
save_path='saved-media/timelapse.mp4'
config = CFEVideoConf(cap, filepath=save_path, res='720p')
out = cv2.VideoWriter(save_path, config.video_type, frames_per_seconds, config.dims)
timelapse_img_dir = '/Users/Dropbox/OpenCV/src/images/timelapse/'
seconds_duration = 20
seconds_between_shots = .25

if not os.path.exists(timelapse_img_dir):
    os.mkdir(timelapse_img_dir)

now = datetime.datetime.now()
finish_time = now + datetime.timedelta(seconds=seconds_duration)
i = 0
while datetime.datetime.now() < finish_time:
    '''
    Ensure that the current time is still less
    than the preset finish time
    '''
    ret, frame      = cap.read()
    # filename        = f"{timelapse_img_dir}/{i}.jpg"
    filename        = f"{timelapse_img_dir}/{i}.jpg"
    i               += 1
    cv2.imwrite(filename, frame)
    time.sleep(seconds_between_shots)
    if cv2.waitKey(20) & 0xFF == ord('q'):
        break


def images_to_video(out, image_dir, clear_images=True):
    image_list = glob.glob(f"{image_dir}/*.jpg")
    sorted_images = sorted(image_list, key=os.path.getmtime)
    for file in sorted_images:
        image_frame  = cv2.imread(file)
        out.write(image_frame)
    if clear_images:
        '''
        Remove stored timelapse images
        '''
        for file in image_list:
            os.remove(file)

images_to_video(out, timelapse_img_dir)
# When everything done, release the capture
cap.release()
out.release()
cv2.destroyAllWindows()

I believe the format you are using is only supported on python 3.6 "Literal String Interpolation": 我相信你使用的格式只支持python 3.6“Literal String Interpolation”:

https://www.python.org/dev/peps/pep-0498/#raw-f-strings https://www.python.org/dev/peps/pep-0498/#raw-f-strings

filename  = f"{timelapse_img_dir}/{i}.jpg"

here are 2 other options depends on what python you are using: 这里有2个其他选项取决于你使用的是什么python:

python 2.7: python 2.7:

filename = '%(timelapse_img_dir)s %(i)s' % locals()

python 3+ python 3+

filename = '{timelapse_img_dir} {i}'.format(**locals())

Based on: https://pyformat.info/ 基于: https//pyformat.info/

I dont know why i was not able to use the f function. 我不知道为什么我不能使用f函数。 I had to do another concatenation to work. 我不得不做另一个连接工作。

 filename        = timelapse_img_dir +str(i) +file_format

and for the rest i used the wild card 而对于其他人我使用外卡

filetomake = image_dir + "/*.jpg"

    image_list = glob.glob(filetomake)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM