Spaces:
Sleeping
Sleeping
| """ | |
| M贸dulo para la p谩gina "About" de EmotionMirror. | |
| Este m贸dulo contiene la l贸gica para renderizar la p谩gina "About" | |
| que muestra informaci贸n sobre la aplicaci贸n. | |
| """ | |
| import streamlit as st | |
| def render_about_page(): | |
| """ | |
| Renderiza la p谩gina "About" con informaci贸n sobre la aplicaci贸n. | |
| """ | |
| st.header("About EmotionMirror") | |
| st.markdown(""" | |
| ## EmotionMirror: Emotional Analysis System | |
| EmotionMirror is an application that uses computer vision and artificial intelligence | |
| to analyze emotions from facial expressions and body language. | |
| ### Technology Stack | |
| * **Streamlit**: For the user interface | |
| * **YOLOv8**: For object detection, pose estimation, and facial analysis | |
| * **Agent Framework**: A custom multi-agent system for coordinated analysis | |
| ### Future Features | |
| * Enhanced emotion recognition with Hume.ai integration | |
| * Temporal emotion tracking and pattern analysis | |
| * Personalized recommendations based on emotional states | |
| * Guided emotional wellness sessions | |
| ### Privacy | |
| * All image processing is done locally | |
| * We don't store your images after processing | |
| * No personal data is shared with third parties | |
| """) | |