Opencv实用笔记(一): 获取并绘制JSON标注文件目标区域(可单独保存目标小图)

文章目录

背景

如果我们想要根据json标注文件,获取里面的指定目标的裁剪区域,那么我们可以根据以下代码来实现(也可以校验标注情况)。

代码

python 复制代码
from tqdm import tqdm
import os, json, cv2, copy
import numpy as np

def get_all_images(path, flags):
	result_list, filenames = [], []
	for root, dirs, files in os.walk(path):
		for file in files:
			filename, file_extension = os.path.splitext(file)
			if file_extension.lower() in flags:
				result_list.append(os.path.join(root, file))
				filenames.append(file)
	return result_list, filenames

def get_labelme_info(label_file, target):
    anno = json.load(open(label_file, "r", encoding="utf-8"))
    shapes = anno['shapes']
    image_path = os.path.basename(anno['imagePath'])
    labels = []
    boxes = []
    for s in shapes:
        pts = s['points']
        x1, y1 = pts[0]
        x2, y2 = pts[1]
        label = s['label']
        if label in target:
            labels.append(label)
            boxes.append([x1, y1, x2, y2])
    return image_path, boxes, labels

def plot_one_ori(image, boxs, label, color, mask_alpha=0.4):
    [x1, y1, x2, y2] = boxs
    mask_img = copy.deepcopy(image) # 1
    ori_img = copy.deepcopy(mask_img) # 1
    cropped_image = ori_img[y1:y2, x1:x2]
    img_height, img_width = image.shape[:2]
    size = min([img_height, img_width]) * 0.0006
    text_thickness = int(min([img_height, img_width]) * 0.001)
    cv2.rectangle(image, (x1, y1), (x2, y2), color, 3)
    caption = f'{"原标签-"}{label}'
    (tw, th), _ = cv2.getTextSize(text=caption, fontFace=cv2.FONT_HERSHEY_SIMPLEX,
                                fontScale=size, thickness=text_thickness)
    th = int(th * 1.2)
    cv2.rectangle(image, (x1, y2),
                (x1 + tw, y2 + th), color, -1)
    cv2.rectangle(mask_img, (x1, y2),
                (x1 + tw, y2 + th), color, -1)
    cv2.putText(image, caption, (x1, y2 + th), cv2.FONT_HERSHEY_SIMPLEX, size, (255, 255, 255), text_thickness, cv2.LINE_AA)
    cv2.putText(mask_img, caption, (x1, y2 + th), cv2.FONT_HERSHEY_SIMPLEX, size, (255, 255, 255), text_thickness, cv2.LINE_AA)
    image = cv2.addWeighted(mask_img, mask_alpha, image, 1 - mask_alpha, 0)
    return image, cropped_image

def cv_imread(filePath):
    cv_img = cv2.imdecode(np.fromfile(filePath, dtype=np.uint8), flags=cv2.IMREAD_COLOR)
    return cv_img

if __name__ == "__main__":
    img_folder = r"\\DSJ_NAS_90*******" # 原图和JSON文件位置
    save_target_path = r"\\DSJ_NA************" # 保存位置
    target = ["red_face"] # 获取指定目标,可传多个
    os.makedirs(save_target_path, exist_ok=True)
    img_list, filenames = get_all_images(img_folder, flags=[".jpg", ".png", ".jpeg"])
    print(filenames)
    for filename in filenames:
        fn, file_extension = os.path.splitext(filename)
        image_path = os.path.join(img_folder, filename)  # 图片名
        json_path = os.path.join(img_folder, "{}.json".format(fn))  # 标签文件名
        save_path = os.path.join(save_target_path, "{}.jpg".format(fn))
        _, ori_boxes, ori_labels = get_labelme_info(json_path, target)
        for box, label in zip(ori_boxes, ori_labels):
            x1, y1, x2, y2 = list(map(int, box))
            image = cv_imread(image_path)
            image, crop_image = plot_one_ori(image, [x1, y1, x2, y2], label, color=(0,0,255))
            # cv2.imshow("1",crop_image)
            # cv2.waitKey(1)
            cv2.imencode('.jpg', crop_image)[1].tofile(save_path)
相关推荐
RainCity2 天前
Java Swing 自定义组件库分享(十二)
java·笔记·后端
Venuslite3 天前
从 Unexpected token < 到 Extra data:一次讲清 JSON 解析错误的排查思路
json
疯狂SQL9 天前
手写高性能在线 JSON 工具|Web Worker 工程化打包 + 语法自动修复 + 多语言代码生成实战
typescript·json·next.js·web worker·前端性能优化·esbuild·源码实战
LinXunFeng9 天前
Obsidian - 使用 Share Note 分享笔记并自部署
前端·笔记·github
兵慌码乱9 天前
基于 MediaPipe 与 PySide2 的手势交互音乐控制系统实现:轻量化视觉交互全流程解析
python·opencv·计算机视觉·人机交互·手势识别·mediapipe·pyside2
闪闪发亮的小星星14 天前
高斯光以及高斯光公式解释
笔记
梦想三三14 天前
OpenCV银行卡数字识别项目(图像预处理与字符分割)
人工智能·opencv·计算机视觉
cqbzcsq14 天前
CellFlow虚拟细胞论文阅读
论文阅读·人工智能·笔记·学习·生物信息
阿米亚波14 天前
【Windows】QEMU 启动 openEuler aarch64/arm64 架构系统 + 离线软件源
linux·windows·经验分享·笔记·架构·arm
自传.14 天前
尚硅谷 Vibe Coding|第三章(1) Claude Code深度使用与进阶技巧 学习笔记
笔记·学习·尚硅谷·vibecoding