Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,38 @@ The system integrates YOLOv8s for object detection and an LSTM model for motion
**Server Access**
- API accessible via the local host server at `http://127.0.0.1:9000`.

## 📬 Access API Using Postman Software
To access the API using Postman, follow these steps:

Install Postman:

If you haven't already, download and install Postman from here.
Create a New Request:

Open Postman and click on New to create a new HTTP request.
Set the Request Type and URL:

Select POST as the request type.
Enter the API endpoint URL: http://127.0.0.1:9000/process.
Set Headers:

Click on the Headers tab and add the following key-value pair:
Content-Type: application/json
Set the Body:

Click on the Body tab and select raw and JSON (application/json).
Enter the JSON payload with the video data you want to process. For example:
json
Copy code
{
"video_path": "path/to/your/video.mp4"
}
Send the Request:

Click on Send to submit your request to the API.
You should receive a response with the processed frames and video output.
For more details on using Postman, refer to the [Postman](https://learning.postman.com/docs/introduction/overview/).

## 📊 Output
![Output](https://github.com/AritriPodde2210/TeleICU-Patient-Monitoring-System/assets/123970201/819a41cb-b4d0-45fe-9d5a-ea6ebfd87f3e)

Expand Down