https://github.com/abhigyan126/frame-fusion
Utilizing image stitching techniques to merge frames from a video into a cohesive image, effectively encapsulating the entire video in a single panoramic representation.
https://github.com/abhigyan126/frame-fusion
Last synced: 3 months ago
JSON representation
Utilizing image stitching techniques to merge frames from a video into a cohesive image, effectively encapsulating the entire video in a single panoramic representation.
- Host: GitHub
- URL: https://github.com/abhigyan126/frame-fusion
- Owner: Abhigyan126
- Created: 2024-04-08T16:33:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-22T17:35:18.000Z (9 months ago)
- Last Synced: 2025-03-26T21:37:49.830Z (7 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frame-Fusion
Utilizing image stitching techniques to merge frames from a video into a cohesive image, effectively encapsulating the entire video in a single panoramic representation.## Flow Chart
```mermaid
flowchart TB
Upload["Upload Video Button"] --> VideoCapture["Video Capture\n(OpenCV)"]
subgraph UI["Tkinter Interface"]
VideoCapture --> Preview["Preview Window"]
Controls["Control Panel"]
Controls --> |"Play/Pause"| Preview
Controls --> |"Limit Frames"| Process
Controls --> |"Skip Frames"| Process
end
subgraph Processing["Video Processing"]
Process["Process Video"] --> Stitcher["OpenCV Stitcher"]
Stitcher --> Panorama["Panorama Image"]
end
Preview --> Process
Panorama --> Save["Save Panorama"]
```