我只想保存我使用mask_rcnn的图像的一部分 例如,我想从test.jpg中仅提取bag类,并通过使用python imagecrop获得仅包含bag的图像,但是代码太复杂了,无法知道。
# Load a random image from the images folder
file_names = next(os.walk(IMAGE_DIR))[2]
image = skimage.io.imread(os.path.join(IMAGE_DIR, "test2.jpg"))
# Run detection
results = model.detect([image], verbose=1)
# Visualize results
r = results[0]
visualize.display_instances(image, r['rois'], r['masks'], r['class_ids'],
class_names, r['scores'])
仅打印一个文件袋并将其保存并保存在名为test.jpg的文件中。通过使用pythoncrop
答案 0 :(得分:0)
您可以通过编辑visualize.py保存图像并插入
代码后的plt.savefig('your_desired_path_to_image.jpg',bbox_inches='tight', pad_inches=-0.5,orientation= 'landscape')
ax.imshow(masked_image.astype(np.uint8))
在https://github.com/matterport/Mask_RCNN/issues/134
答案 1 :(得分:0)
如果我理解正确,则只想提取/裁剪特定类别的图像。方法如下:
# Load a random image from the images folder
file_names = next(os.walk(IMAGE_DIR))[2]
image = skimage.io.imread(os.path.join(IMAGE_DIR, "test2.jpg"))
# Run detection
results = model.detect([image], verbose=1)
r = results[0]
r
是python字典,其中r['rois']
是预测框的(ndarray)坐标,而r['class_ids']
是相应的类ID(ndarray)。
假设需要裁剪的类是2(class_id)
class_id = 2
images_cropped = []
class_fltr = r['class_ids'] == class_id
boxes = r['rois'][class_fltr, :]
for box in boxes:
y1, x1, y2, x2 = box
cropped = image[y1: y2, x1: x2]
images_cropped.append(cropped)
所有裁剪的图像(如果找到)都附加在列表images_cropped
中。
您可以按照以下方式绘制图像:
import matplotib.pyplot as plt
img = images_cropped[0]
plt.imshow(img)
答案 2 :(得分:-1)
确保您已设置“os.directory”。
from PIL import Image
import numpy as np
def display_instances(image, boxes, masks, class_ids, class_names,
scores=None, title="",
figsize=(16, 16), ax=None,
show_mask=True, show_bbox=True,
colors=None, captions=None):
"""
boxes: [num_instance, (y1, x1, y2, x2, class_id)] in image coordinates.
masks: [height, width, num_instances]
class_ids: [num_instances]
class_names: list of class names of the dataset
scores: (optional) confidence scores for each box
title: (optional) Figure title
show_mask, show_bbox: To show masks and bounding boxes or not
figsize: (optional) the size of the image
colors: (optional) An array or colors to use with each object
captions: (optional) A list of strings to use as captions for each object
"""
# Number of instances
N = boxes.shape[0]
if not N:
print("\n*** No instances to display *** \n")
else:
assert boxes.shape[0] == masks.shape[-1] == class_ids.shape[0]
# If no axis is passed, create one and automatically call show()
auto_show = False
if not ax:
_, ax = plt.subplots(1, figsize=figsize)
auto_show = True
# Generate random colors
colors = colors or random_colors(N)
# Show area outside image boundaries.
height, width = image.shape[:2]
ax.set_ylim(height + 10, -10)
ax.set_xlim(-10, width + 10)
ax.axis('off')
ax.set_title(title)
masked_image = image.astype(np.uint32).copy()
for i in range(N):
color = colors[i]
# Bounding box
if not np.any(boxes[i]):
# Skip this instance. Has no bbox. Likely lost in image cropping.
continue
y1, x1, y2, x2 = boxes[i]
if show_bbox:
p = patches.Rectangle((x1, y1), x2 - x1, y2 - y1, linewidth=2,
alpha=0.7, linestyle="dashed",
edgecolor=color, facecolor='none')
ax.add_patch(p)
# Label
if not captions:
class_id = class_ids[i]
score = scores[i] if scores is not None else None
label = class_names[class_id]
caption = "{} {:.3f}".format(label, score) if score else label
else:
caption = captions[i]
ax.text(x1, y1 + 8, caption,
color='w', size=11, backgroundcolor="none")
# Mask
mask = masks[:, :, i]
if show_mask:
masked_image = apply_mask(masked_image, mask, color)
# Mask Polygon
# Pad to ensure proper polygons for masks that touch image edges.
padded_mask = np.zeros(
(mask.shape[0] + 2, mask.shape[1] + 2), dtype=np.uint8)
padded_mask[1:-1, 1:-1] = mask
contours = find_contours(padded_mask, 0.5)
for verts in contours:
# Subtract the padding and flip (y, x) to (x, y)
verts = np.fliplr(verts) - 1
p = Polygon(verts, facecolor="none", edgecolor=color)
ax.add_patch(p)
ax.imshow(masked_image.astype(np.uint8))
img1 = Image.fromarray(masked_image.astype(np.uint8), 'RGB')
img1.save('my.png')
img1.show()
if auto_show:
plt.show()