Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.03 KB

File metadata and controls

56 lines (38 loc) · 1.03 KB

Simulation Eye App

A Streamlit application that allows users to upload a fundus image and create a printable net which can be cut out and assembled into a simulation eye.

Features

  • Upload images (PNG, JPG, JPEG formats supported)
  • Process the image
  • Download the processed image
  • Simple progress indicator for better user experience

Getting Started

Prerequisites

  • Python 3.8+
  • pip

Installation

  1. Clone the repository
git clone https://github.com/stuwilmur/sim-eye-app.git
cd sim-eye-app
  1. Create a virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install dependencies
pip install -r requirements.txt

Running the App

streamlit run main.py

The app will be available at http://localhost:8501 in your web browser.

Usage Guidelines

  • Maximum file size: 10MB
  • Supported formats: PNG, JPG, JPEG

License

MIT

Related repo

stuwilmur/sim-eye