AI for healthcare monitoring: fall detection, patient activity tracking, and alerts.
- Python 3.11
- motion detection algo
- detects unsual activities in elders
- sends alerts to emergency contacts and caregivers
- 24x7 patient monitoring
cd 10-carebotin cmd- Create venv:
python -m venv .venv .venv\Scripts\activate - download requirements
python -m pip install -r requirements.txt
- run the server
uvicorn app.main:app --reload --port 8009
- try testing with
/wrtefor the endpoint:$headers = @{ "Content-Type" = "application/json" } $body = '{"topic":"AI in healthcare","style":"professional"}' Invoke-WebRequest -Uri "http://127.0.0.1:8009/write" -Method POST -Headers $headers -Body $body
NOTE: TO upgrade further can be extended with real time camera feeds.