ComfyUI-MakeFrame

ComfyUI-MakeFrame
★ 29

视频帧处理关键帧检测图像网格ComfyUI扩展
ComfyUI-MakeFrame:包含BreakFrames、GetKeyFrames与MakeGrid,能分解视频帧、检测场景关键帧并生成网格,便于挑选与可视化。
💡 将视频分解为帧并自动检测、可视化关键帧
🍴 8 Forks💻 Python🔄 2024-05-22
📦
网盘下载
复制链接后前往夸克网盘下载
https://pan.quark.cn/s/51137d50651f
📦 requirements.txt
opencv-python
image
image
image
image
📄 README

MakeFrame

BreakFrames:

Break any animation file that OpenCV will process into individual frames.

GetKeyFrames:

Process scene detection on all given frames, rank-orders, returns top N results. Also returns labeled images.

MakeGrid:

Plots given images on a grid. Calculates number of rows and columns for most even aspect ratio.

  • For concurrent frame generation. Creates potentially massive image.
  • Images are resized to be evenly-divisible by rows, columns, and 8 (to prevent “resize wobble”).
  • Empty cells are padded with repeats of last image. Black space frustrates generation.
  • BreakGrid:

    Breaks given image grid(s) back into individual images. Good practice to use rows/columns output from MakeGrid.