An intelligent application that digitizes handwritten doctor notes and prescriptions using PaddleOCR, then automatically creates Google Calendar events to help patients never miss their medications or appointments.
Patients often receive handwritten prescriptions and medical instructions that are:
- Difficult to read and interpret
- Easy to forget or lose
- Not integrated with digital reminder systems
This leads to missed medications, forgotten follow-up appointments, and poor adherence to treatment plans.
Dr. Paddle bridges the gap between paper-based medical instructions and digital reminder systems:
- Capture - Take a photo of your prescription or doctor's notes
- Recognize - PaddleOCR extracts text from handwritten medical documents
- Parse - AI interprets medication names, dosages, frequencies, and appointment dates
- Schedule - Automatically creates Google Calendar events with proper reminders
- Handwriting Recognition - Powered by PaddleOCR for accurate text extraction from medical documents
- Smart Parsing - Understands medical terminology, dosage instructions, and scheduling patterns
- Calendar Integration - Seamless Google Calendar event creation with customizable reminders
- Medication Reminders - Never miss a dose with recurring calendar events
- Appointment Tracking - Keep track of follow-up visits and medical appointments
Trigger OCR recognition on the current image and extract prescription data.
Response:
{
"takings": [
{
"name": "Amoxicillin 500mg, day 1/3",
"start": "2025-11-30T10:00:00",
"description": "Take 1 capsule with food"
}
]
}| Field | Type | Description |
|---|---|---|
name |
string | Medicine name, dose, and day count |
start |
string | ISO 8601 datetime for first taking |
description |
string | Instructions for taking the medicine |
Get the current captured image.
Response: JPEG image file
Headers:
Content-Type: image/jpeg
- Backend: FastAPI (Python)
- OCR Engine: PaddleOCR
- Calendar: Google Calendar API
- AI/ML: Text parsing and medical instruction interpretation
.
├── assets/ # Images and static assets
│ └── logo.png # Project logo
├── backend/ # FastAPI backend server
│ ├── api/ # API endpoints
│ ├── services/ # Business logic services
│ ├── demo/ # Demo images for testing
│ ├── main.py # Application entry point
│ └── README.md # Backend setup instructions
└── README.md # This file
See backend/README.md for setup and running instructions.
See LICENSE for details.
