-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92b2724
commit 1f1c2cb
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Object Size Detection | ||
|
||
This Project creates an app where users can upload an image to measure the size of objects in it. After uploading, the app detects objects, measures their height and width based on a reference size, and displays the image with dimensions marked on each object. It also shows the total number of objects found and lists each object’s size. | ||
|
||
|
||
## Tech Stack | ||
|
||
**Languages:** Python | ||
|
||
**Libraries:** opencv,numpy etc | ||
|
||
**Framework:** Streamlit | ||
|
||
|
||
## Run Locally | ||
|
||
Install dependencies | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
Start the server | ||
|
||
```bash | ||
streamlit run app.py | ||
``` | ||
|
||
|
||
|
||
|