-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe_waste_comp.py
62 lines (55 loc) · 2.19 KB
/
e_waste_comp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'''
<TEAM ECOLENS>
Members : Arnav Jha, Abhinav Shukla , Harsh Sharma
The E- WASTE OBJECT DETECTION project aims to identify and categorize electronic waste
items using computer vision techniques
The goal is to help users understand how to dispose of e-waste properly by providing
information on each detected item
As the project is still in the intial stage
following code is restricted for circuit elemets only ...
'''
from roboflow import Roboflow
import webbrowser
# Initialize Roboflow API
rf = Roboflow(api_key="cCReFkOrZTB48P1mVjN4")
project = rf.workspace().project("circuit-board")
model = project.version(2).model
# Local image path
image_path = "C:\\Users\\Administrator\\Desktop\\test.png"
# Infer on a local image
predictions = model.predict(image_path, confidence=40, overlap=30).json()
print(predictions,type(predictions))
cwc,iwc,twc,rwc=0,0,0,0
# Process predictions and open relevant files or links
for prediction in predictions["predictions"]:
# Check if the prediction is a relevant class
relevant_classes = ["Capacitor", "Inductor", "Transistor","Resistor"]
if prediction["class"] in relevant_classes:
if prediction["class"] == "Capacitor":
if cwc ==1:
pass
else:
# Open a text file or link related to capacitor
webbrowser.open("https://en.wikipedia.org/wiki/Capacitor")
cwc+=1
elif prediction["class"] == "Inductor":
if iwc ==1:
pass
else:
# Open a text file or link related to Inductor
webbrowser.open("https://en.wikipedia.org/wiki/Inductor")
iwc+=1
elif prediction["class"] == "Transistor":
if twc==1:
pass
else:
# Open a text file or link related to Transistor
webbrowser.open("https://en.wikipedia.org/wiki/Transistor")
twc+=1
elif prediction["class"] == "Resistor":
if rwc==1:
pass
else:
#Open a text file or link related to Resistor
webbrowser.open("https://en.wikipedia.org/wiki/Resistor")
rwc+=1