Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,6 @@
|
|
| 2 |
# -*- coding: utf-8 -*-
|
| 3 |
"""
|
| 4 |
SVAT - Synthetic Video Analyze Tool
|
| 5 |
-
|
| 6 |
Created on Wed Oct 29 12:00:23 2025
|
| 7 |
@author: standarduser
|
| 8 |
"""
|
|
@@ -11,6 +10,7 @@ import gradio as gr
|
|
| 11 |
from tabs.tab_videoframes import create_tab_videoframes
|
| 12 |
from tabs.tab_fft import create_tab_image_fft
|
| 13 |
from tabs.tab_video_analysis import create_tab_video_analysis
|
|
|
|
| 14 |
from processing.image_processing import process_image
|
| 15 |
|
| 16 |
# Gradio App erstellen
|
|
@@ -27,8 +27,10 @@ with gr.Blocks() as demo:
|
|
| 27 |
|
| 28 |
# Tab 2: Video-level analysis
|
| 29 |
video_analysis_frames = create_tab_video_analysis("Video Analysis")
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
create_tab_image_fft("Help")
|
| 33 |
|
| 34 |
# Connect the video frames state between tabs
|
|
|
|
| 2 |
# -*- coding: utf-8 -*-
|
| 3 |
"""
|
| 4 |
SVAT - Synthetic Video Analyze Tool
|
|
|
|
| 5 |
Created on Wed Oct 29 12:00:23 2025
|
| 6 |
@author: standarduser
|
| 7 |
"""
|
|
|
|
| 10 |
from tabs.tab_videoframes import create_tab_videoframes
|
| 11 |
from tabs.tab_fft import create_tab_image_fft
|
| 12 |
from tabs.tab_video_analysis import create_tab_video_analysis
|
| 13 |
+
from tabs.tab_classify_image import create_tab_classify_image
|
| 14 |
from processing.image_processing import process_image
|
| 15 |
|
| 16 |
# Gradio App erstellen
|
|
|
|
| 27 |
|
| 28 |
# Tab 2: Video-level analysis
|
| 29 |
video_analysis_frames = create_tab_video_analysis("Video Analysis")
|
| 30 |
+
|
| 31 |
+
create_tab_classify_image("Classify Image")
|
| 32 |
+
|
| 33 |
+
# Tab 4: Help
|
| 34 |
create_tab_image_fft("Help")
|
| 35 |
|
| 36 |
# Connect the video frames state between tabs
|