$ pip install opencv-python
$ pip install matplotlib
$ pip install Pillow
$ pip install numpy
- code is here region_attention_visualization.py
当前版本还有改进空间, 改进后会更新至github
使用到的接口
import cv2
cv2.rectangle(img=..., pt1=..., pt2=..., color=..., thickness=...)
img
: 输入的图像pt1
: 左上角坐标pt2
: 右下角坐标color
: 框颜色的数值, RGBthickness
: 框的厚度, 当设置为-1的时候采用全填充的形式