import streamlit as st # Установка конфигурации страницы st.set_page_config( page_title="GestureGuru", page_icon=":sparkles:", layout="wide", initial_sidebar_state="expanded", ) # Добавление стилей st.markdown(""" """, unsafe_allow_html=True) # Установка параметров URL # Установка параметров запроса st.experimental_set_query_params(page="main") # Используйте переменную page после определения # Основной контент страницы st.title("GestureGuru") st.subheader("Russian Sign Language Recognition") st.markdown("""

This application is designed to recognize sign language using a webcam feed. The model has been trained to recognize various sign language gestures and display the corresponding text in real-time.

Features:

How it works:

  1. Upload a video or use the camera for live recognition.
  2. The model processes the video and identifies the gestures.
  3. The recognized gestures are displayed as text.

Why use this app:

""", unsafe_allow_html=True) st.image("image.webp", caption="Sign Language Recognition", use_column_width=True)