在图片上画矩形框
Posted yuehouse
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在图片上画矩形框相关的知识,希望对你有一定的参考价值。
import matplotlib.pyplot as plt import matplotlib.patches as mpatches # draw rectangles on the original image fig, ax = plt.subplots(ncols=1, nrows=1, figsize=(6, 6)) ax.imshow(img) for x, y, w, h in candidates: print(x, y, w, h) rect = mpatches.Rectangle( (x, y), w, h, fill=False, edgecolor=‘red‘, linewidth=1) ax.add_patch(rect)
以上是关于在图片上画矩形框的主要内容,如果未能解决你的问题,请参考以下文章
我想围绕窗体中的按钮控件画一个矩形,然后在矩形里填充图片或颜色,用API怎么做?高分