-
-
Notifications
You must be signed in to change notification settings - Fork 46.8k
Added the OpenCv Model #11675
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
Added the OpenCv Model #11675
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
import cv2 | ||
Check failure on line 1 in Object Detection/ObjectDection.py
|
||
import matplotlib.pyplot as plt | ||
|
||
config_file = "ssd_mobilenet_v3_large_coco_2020_01_14.pbtxt" | ||
frozen_model = "frozen_inference_graph.pb" | ||
model = cv2.dnn_DetectionModel(frozen_model, config_file) | ||
|
||
classLabels = [] | ||
Check failure on line 8 in Object Detection/ObjectDection.py
|
||
file_name = "labels.txt" | ||
with open(file_name, "rt") as fpt: | ||
Check failure on line 10 in Object Detection/ObjectDection.py
|
||
classLabels = fpt.read().rstrip("\n").split("\n") | ||
Check failure on line 11 in Object Detection/ObjectDection.py
|
||
|
||
print(classLabels) | ||
print(len(classLabels)) | ||
|
||
model.setInputSize(320, 320) | ||
model.setInputScale(1.0 / 127.5) | ||
model.setInputMean((127.5, 127.5, 127.5)) | ||
model.setInputSwapRB(True) | ||
|
||
img = cv2.imread("boy.jpg") | ||
plt.imshow(img) | ||
|
||
ClassIndex, confidence, bbox = model.detect(img, confThreshold=0.5) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable and function names should follow the |
||
print(ClassIndex) | ||
|
||
font_scale = 3 | ||
font = cv2.FONT_HERSHEY_PLAIN | ||
for ClassInd, conf, boxes in zip(ClassIndex.flatten(), confidence.flatten(), bbox): | ||
Check failure on line 29 in Object Detection/ObjectDection.py
|
||
cv2.rectangle(img, boxes, (255, 0, 0), 2) | ||
cv2.putText( | ||
img, | ||
classLabels[ClassInd - 1], | ||
(boxes[0] + 10, boxes[1] + 40), | ||
font, | ||
fontScale=font_scale, | ||
color=(0, 255, 0), | ||
thickness=3, | ||
) | ||
|
||
plt.imshow(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) | ||
plt.show() | ||
|
||
# Webcam Object Detection | ||
cap = cv2.VideoCapture("1") | ||
if not cap.isOpened(): | ||
cap = cv2.VideoCapture(0) | ||
if not cap.isOpened(): | ||
raise IOError("Cannot open video") | ||
Check failure on line 49 in Object Detection/ObjectDection.py
|
||
|
||
font_scale = 3 | ||
font = cv2.FONT_HERSHEY_PLAIN | ||
|
||
while True: | ||
ret, frame = cap.read() | ||
|
||
ClassIndex, confidence, bbox = model.detect(frame, confThreshold=0.55) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable and function names should follow the |
||
print(ClassIndex) | ||
|
||
if len(ClassIndex) != 0: | ||
for ClassInd, conf, boxes in zip( | ||
Check failure on line 61 in Object Detection/ObjectDection.py
|
||
ClassIndex.flatten(), confidence.flatten(), bbox | ||
): | ||
if ClassInd <= 80: | ||
cv2.rectangle(frame, boxes, (255, 0, 0), 2) | ||
cv2.putText( | ||
frame, | ||
classLabels[ClassInd - 1], | ||
(boxes[0] + 10, boxes[1] + 40), | ||
font, | ||
fontScale=font_scale, | ||
color=(0, 255, 0), | ||
thickness=3, | ||
) | ||
|
||
cv2.imshow("Object Detection Tutorial", frame) | ||
|
||
if cv2.waitKey(2) & 0xFF == ord("q"): | ||
break | ||
|
||
cap.release() | ||
cv2.destroyAllWindows() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable and function names should follow the
snake_case
naming convention. Please update the following name accordingly:classLabels