Skip to content

Commit 3d6017a

Browse files
committed
updated README
1 parent a2094cb commit 3d6017a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ npm install
105105
npm start
106106
```
107107

108-
Your browser will open to `http://localhost:3000`, which will connect to the backend container running on port 5000.
108+
Your browser will open to `http://localhost:5000`, which will connect to the backend container running on port 5000.
109109

110110
-----
111111

@@ -165,7 +165,7 @@ npm start
165165

166166
**5. View Your App**
167167

168-
Open your browser and go to `http://localhost:3000`.
168+
Open your browser and go to `http://localhost:5000`.
169169

170170
-----
171171

@@ -205,6 +205,7 @@ This project involved several key design decisions to achieve a stable, real-tim
205205

206206
* **Upgrade to a Modern Face Detector:** The current implementation uses OpenCV's classic Haar Cascades. A significant improvement would be to replace this with **YuNet**, a lightweight and highly accurate deep-learning detector from the OpenCV model zoo. This would dramatically improve detection accuracy with varied angles, lighting, and partial occlusions.
207207
* **Support Multiple Faces:** The backend could be refactored to *always* send a 2D array (a list of faces), e.g., `[[x,y,w,h], [x2,y2,w2,h2]]`. The frontend would then use a `forEach` loop to draw a box for every face detected.
208+
* **Do Face Detection On Front End Using OpenCV** Doing face detection on the front end will enable to bounding box to be quicker even on an a weak computer as the bounding box will be handled by the front end.
208209
209210
-----
210211

0 commit comments

Comments
 (0)