翼度科技»论坛 编程开发 python 查看内容

使用Python和OpenCV实现动态背景的画中画效果

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
在本文中,我们将通过一个详细的Python脚本,使用OpenCV库来为视频添加动态背景。这个脚本将指导你如何读取两个视频文件,一个作为前景,另一个作为背景,并将它们合成一个视频,其中前景视频的特定区域将显示背景视频的内容。
在视频上加入背景动态的画中画。
代码解析与注释
  1. # 视频文件路径
  2. input_video_path = 'sc/input_video.mp4'  # 输入视频文件路径
  3. output_video_path = 'output_video_bg03.mp4'  # 输出视频文件路径
  4. background_video_path = 'sc/bg_03b.mp4'  # MP4视频背景文件路径

  5. # 背景透明度(0.0 完全透明,1.0 完全不透明)
  6. background_opacity = 0.6

  7. # 背景视频的最大帧数(如果需要截断背景视频)
  8. max_background_frames = 1000

  9. # 读取视频文件
  10. cap = cv2.VideoCapture(input_video_path)  # 读取前景视频
  11. background_cap = cv2.VideoCapture(background_video_path)  # 读取背景视频

  12. # 获取视频帧的尺寸
  13. ret, frame = cap.read()  # 读取第一帧
  14. if not ret:
  15.     print("无法读取视频文件")
  16.     raise Exception("无法读取视频文件")  # 如果无法读取,抛出异常

  17. height, width = frame.shape[:2]  # 获取帧的高和宽

  18. # 定义黑色实心矩形的尺寸变量
  19. top_bar_height = int(height * 0.30)  # 顶部黑色实心矩形的高度设置为视频总高度的30%
  20. bottom_bar_height = int(height * 0.15)  # 底部黑色实心矩形的高度设置为视频总高度的15%

  21. # 定义蒙版的位置和大小
  22. mask_top_margin = top_bar_height  # 蒙版顶部距离
  23. mask_bottom_margin = bottom_bar_height  # 蒙版底部距离
  24. mask_height = height - mask_top_margin - mask_bottom_margin  # 蒙版高度
  25. mask_width = width  # 蒙版宽度
  26. mask_x = 0  # 蒙版中心x坐标
  27. mask_y = mask_top_margin  # 蒙版中心y坐标

  28. # 创建蒙版
  29. mask = np.zeros((height, width, 3), dtype=np.uint8)  # 创建一个全黑的蒙版
  30. cv2.rectangle(mask, (mask_x, mask_y), (mask_x + mask_width, mask_y + mask_height), (255, 255, 255), -1)  # 在蒙版中绘制一个白色矩形

  31. # 定义视频写入器
  32. fourcc = cv2.VideoWriter_fourcc(*'mp4v')  # 定义视频编码格式
  33. out = cv2.VideoWriter(output_video_path, fourcc, 20.0, (width, height))  # 创建视频写入对象

  34. # 背景视频帧计数器
  35. background_frame_index = 0

  36. # 遍历视频帧
  37. while cap.isOpened():
  38.     ret, frame = cap.read()  # 读取前景视频的当前帧
  39.     if not ret:
  40.         break  # 如果读取结束,跳出循环

  41.     # 在视频帧顶部绘制黑色实心矩形
  42.     cv2.rectangle(frame, (0, 0), (width, top_bar_height), (0, 0, 0), -1)
  43.     # 在视频帧底部绘制黑色实心矩形
  44.     cv2.rectangle(frame, (0, height - bottom_bar_height), (width, height), (0, 0, 0), -1)
  45.     # 将蒙版应用到帧上
  46.     masked_frame = cv2.bitwise_and(frame, mask)
  47.     # 读取背景视频的当前帧
  48.     background_ret, background_frame = background_cap.read()
  49.     if not background_ret or background_frame_index >= max_background_frames:
  50.         # 如果背景视频读取失败或达到最大帧数,重新开始背景视频
  51.         background_cap.set(cv2.CAP_PROP_POS_FRAMES, 0)
  52.         background_frame_index = 0
  53.         background_ret, background_frame = background_cap.read()

  54.     # 确保背景帧的尺寸与视频帧匹配
  55.     background_frame = cv2.resize(background_frame, (width, height))
  56.     # 调整背景帧的透明度
  57.     background_frame = background_frame.astype(float) * background_opacity
  58.     background_frame = np.clip(background_frame, 0, 255).astype(np.uint8)

  59.     # 创建反向蒙版
  60.     inv_mask = cv2.bitwise_not(mask)
  61.     # 将背景帧与蒙版的反向进行混合
  62.     masked_background = cv2.bitwise_and(background_frame, inv_mask)
  63.     # 将两个混合结果相加
  64.     result_frame = cv2.add(masked_frame, masked_background)
  65.     # 保存帧
  66.     out.write(result_frame)
  67.     # 更新背景视频帧索引
  68.     background_frame_index += 1

  69. # 释放资源
  70. cap.release()
  71. background_cap.release()
  72. out.release()
  73. cv2.destroyAllWindows()
复制代码
注意
以上是通过cv2经测式,如何视频文件大于10M时运行较慢。
结尾与思考
通过上述代码,我们成功地为一个视频添加了动态背景,同时在视频的顶部和底部添加了黑色实心矩形。这个技术可以广泛应用于视频编辑和特效制作中,例如制作新闻节目的背景、电影特效或者增强视频的视觉效果。
这个项目也展示了Python和OpenCV在视频处理方面的强大能力。通过简单的代码,我们就能够实现复杂的视频合成效果。这不仅为视频制作人员提供了便利,也为爱好者提供了一个学习和实验的平台。
在未来,我们可以探索更多的视频处理技术,比如使用深度学习来自动替换视频中的背景,或者开发更复杂的特效来增强视频内容。随着技术的不断进步,视频处理的边界也在不断扩展,为我们提供了无限的可能性。
到此这篇关于使用Python和OpenCV实现动态背景的画中画效果的文章就介绍到这了,更多相关Python OpenCV动态背景内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/python/331053qug.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具