如何使用python google colab将带有边框的图像存储在文件夹中?

2024-04-26 23:02:46 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图在检测到图像中的人脸后保存这些图像。我尝试使用matplotlib.pyplot.savefig(img,bbox_inches='tight',pad_inches=0)和这个存储的图像,但所有存储的图像都是空白的白色图像。 The output I get

我希望它存储的是:- The Output I expect

#face detection with mtcnn on a photograph
from matplotlib import pyplot
from mtcnn.mtcnn import MTCNN
from matplotlib.patches import Rectangle
from matplotlib.patches import Circle
import glob
import cv2
import matplotlib
# draw an image with detected objects
def draw_image_with_boxes(filename, result_list):
    # load the image
    data = pyplot.imread(filename)
    # plot the image
    pyplot.imshow(data)
    # get the context for drawing boxes
    ax = pyplot.gca()
    # plot each box
    for result in result_list:
        # get coordinates
        x, y, width, height = result['box']
        # create the shape
        rect = Rectangle((x, y), width, height, fill=False, color='red')
        # draw the box
        ax.add_patch(rect)
        # draw the dots on eyes nose ..
        #for key, value in result['keypoints'].items():
            # create and draw dot
            #dot = Circle(value, radius=2, color='red')
            #ax.add_patch(dot)
    # show the plot
    pyplot.show()
    
#filename = '/content/drive/My Drive/images/*.jpg'
i = 1
for filename in glob.glob('/content/drive/My Drive/images/*.jpg'):
   pixels = cv2.imread(filename)

   # load image from file
   #pixels = pyplot.imread(filename)
   # create the detector, using default weights
   detector = MTCNN()
   # detect faces in the image
   faces = detector.detect_faces(pixels)
   # display faces on the original image
   new = draw_image_with_boxes(filename, faces)
   img = '/content/drive/My Drive/boundingBox' + '/image_' + str(i) + '.jpg'
   
   matplotlib.pyplot.savefig(img, bbox_inches='tight', pad_inches=0)
   
   i+=1
print("Done")

Tags: theinfrom图像imageimportformatplotlib
1条回答
网友
1楼 · 发布于 2024-04-26 23:02:46

所以不是

pixels = cv2.imread(filename)

你应该把

pixels = pyplot.imread(filename)

我想这是个语法错误

还要将其从for循环中删除

matplotlib.pyplot.savefig(img, bbox_inches='tight', pad_inches=0)

然后在定义的函数draw_image_with_boxes(filename, result_list)中,在注释“showtheplot”之后添加以下代码行

pyplot.savefig('/content/drive/My Drive/TESTBBOX/' + 'image'+ str(i)+'.jpg',bbox_inches='tight')

相关问题 更多 >