53 lines
878 B
Markdown
53 lines
878 B
Markdown
# Dental Assistant
|
|
|
|
A Django web application for managing dental patients and performing dental image detection using YOLOv5.
|
|
|
|
## Features
|
|
|
|
- Patient management (create, update, view)
|
|
- Dental image detection
|
|
- User authentication
|
|
|
|
## Installation
|
|
|
|
1. Clone the repository:
|
|
```bash
|
|
git clone <repository-url>
|
|
cd Dental_Assistant
|
|
```
|
|
|
|
2. Install dependencies:
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
3. Run migrations:
|
|
```bash
|
|
python manage.py migrate
|
|
```
|
|
|
|
4. Create a superuser:
|
|
```bash
|
|
python manage.py createsuperuser
|
|
```
|
|
|
|
5. Run the development server:
|
|
```bash
|
|
python manage.py runserver
|
|
```
|
|
|
|
## Usage
|
|
|
|
- Access the admin panel at `http://localhost:8000/admin/`
|
|
- Register and login to manage patients
|
|
- Upload patient images and perform detections
|
|
|
|
## Requirements
|
|
|
|
- Python 3.x
|
|
- Django 4.1.6
|
|
- PyTorch
|
|
- YOLOv5
|
|
- See `requirements.txt` for full list of dependencies
|
|
|