Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

draw bounding box on image python cv2

# cv2.rectangle(img, pt1, pt2, color, thickness, lineType, shift)
cv2.rectangle(img, (x1, y1), (x2, y2), (255,0,0), 2)

"""
x1,y1 ------
|          |
|          |
|          |
--------x2,y2
"""
Comment

draw bounding box on image python opencv

## drawing b.box for given coutour


contours, _ = cv2.findContours(thresh, cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE)
for c in contours:
    rect = cv2.boundingRect(c)
    if rect[2] < 100 or rect[3] < 100: continue
    print cv2.contourArea(c)
    x,y,w,h = rect
    cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)
    cv2.putText(im,'Moth Detected',(x+w+10,y+h),0,0.3,(0,255,0))
cv2.imshow("Show",im)
cv2.waitKey()  
cv2.destroyAllWindows()
Comment

PREVIOUS NEXT
Code Example
Python :: how to count stopwords in df 
Python :: min max and avg function of python 
Python :: cv show image python 
Python :: how to switch python version in ubuntu 
Python :: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. 
Python :: godot code for movement for topdown game 
Python :: how to get data in treeview in tkiter 
Python :: python get minute from datetime 
Python :: how to find the lowest value in a nested list python 
Python :: wait for element to be visible selenium python 
Python :: python playsound stop 
Python :: matplotlib set dpi 
Python :: reduced fraction python 
Python :: convert pascal annotation to yolo 
Python :: python get command line arguments 
Python :: qspinbox value changed 
Python :: nodemon python 
Python :: matplotlib subplots title 
Python :: Find the second lowest grade of any student(s) from the given names and grades of each student using lists 
Python :: today date python 
Python :: adjust tick label size matplotlib 
Python :: get rid of axes numbers matplotlib 
Python :: change py version in colab 
Python :: typage in python 
Python :: find out current datetime in python 
Python :: python plot bins not lining up with axis 
Python :: meme command discord.py 
Python :: replace nan in pandas 
Python :: django import settings 
Python :: Set up and run a two-sample independent t-test 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =