opencv-如何获取图像区域特定像素区域大小

需求

通过鼠标框选某个区域,返回这个区域的像素大小。

源码

复制代码
# e:path\to\cal_rectangle_area.py
import cv2  
import numpy as np  

# 初始化变量
image = cv2.imread('./vlcsnap-2024-09-25-10h51m27s007.png')  
if image is None:  
    print("Error: Image could not be read.")  
    exit()  

# 窗口和缩放参数
scale = 1.0
pan_x, pan_y = 0, 0
rectangles = []  # 存储所有矩形框
refPt = []

def draw_rectangle(event, x, y, flags, param):  
    global refPt  
    if event == cv2.EVENT_LBUTTONDOWN:  
        # 计算真实坐标
        real_x = int((x + pan_x) / scale)
        real_y = int((y + pan_y) / scale)
        print(f"Mouse Position (Real): ({real_x}, {real_y})")
        refPt = [[x, y]]  
    elif event == cv2.EVENT_LBUTTONUP and len(refPt) == 1:  
        refPt.append([x, y])  
        rectangles.append(refPt)  # 保存矩形框
        cv2.rectangle(image, tuple(refPt[0]), tuple(refPt[1]), (0, 255, 0), 2)  
        cv2.imshow('image', image)  
        print(f"Width: {abs(refPt[1][0] - refPt[0][0])}, Height: {abs(refPt[1][1] - refPt[0][1])}")  
        refPt = []  

def update_image():
    # 应用缩放和平移
    h, w = image.shape[:2]
    new_image = cv2.resize(image, (int(w * scale), int(h * scale)))
    new_image = new_image[pan_y:pan_y + int(h * scale), pan_x:pan_x + int(w * scale)]
    
    # 绘制所有矩形框
    for rect in rectangles:
        cv2.rectangle(new_image, tuple(rect[0]), tuple(rect[1]), (0, 255, 0), 2)
    
    cv2.imshow('image', new_image)

def crop_and_save_image(x, y):
    # 裁剪图像
    h, w = image.shape[:2]
    x1 = max(x - 320, 0)  # 640/2
    y1 = max(y - 320, 0)  # 640/2
    x2 = min(x + 320, w)  # 640/2
    y2 = min(y + 320, h)  # 640/2

    cropped_image = image[y1:y2, x1:x2]
    cv2.imwrite('cropped_image.png', cropped_image)  # 保存裁剪后的图像
    print(f"Cropped image saved as 'cropped_image.png'.")

# 设置鼠标回调函数  
cv2.namedWindow('image')  
cv2.setMouseCallback('image', draw_rectangle)  

# 显示图像直到有键被按下  
while True:  
    update_image()  # 更新显示的图像
    key = cv2.waitKey(1) & 0xFF  
    if key == ord('q'):  
        break  
    elif key == ord('+'):  # 缩放放大
        scale *= 1.1
    elif key == ord('-'):  # 缩放缩小
        scale /= 1.1
    elif key == ord('w'):  # 向上移动
        pan_y -= 10
    elif key == ord('s'):  # 向下移动
        pan_y += 10
    elif key == ord('a'):  # 向左移动
        pan_x -= 10
    elif key == ord('d'):  # 向右移动
        pan_x += 10
    elif key == ord('c'):  # 输入坐标裁剪图像
        x = int(input("Enter x coordinate: "))
        y = int(input("Enter y coordinate: "))
        crop_and_save_image(x, y)

cv2.destroyAllWindows()
相关推荐
新缸中之脑3 小时前
leboncoin:微调如何击败RAG
人工智能
放下华子我只抽RuiKe53 小时前
从零构建高精度 AI Agent Skill:Tech Blog Generator 实战指南
人工智能·prompt·github·ai agent·skills·openclaw·development
不要秃头的小孩3 小时前
50. 随机数排序
数据结构·python·算法
qq_417695053 小时前
实战:用OpenCV和Python进行人脸识别
jvm·数据库·python
Lab_AI3 小时前
电池材料行业数据管理新突破:AI4S驱动的科学数据平台正在重塑电池材料开发范式
大数据·人工智能·ai4s·电池材料开发·电池材料研发·电池材料创新·ai材料研发
FindAI发现力量4 小时前
智能工牌:线下销售场景的数字化赋能解决方案
大数据·人工智能·销售管理·ai销售·ai销冠·销售智能体
twc8294 小时前
QA的AI突围之路
软件测试·人工智能·ai测试
1941s4 小时前
Google Agent Development Kit (ADK) 指南 第五章:工具集成与自定义
人工智能·python·langchain·agent·adk
智算菩萨4 小时前
【Generative AI For Autonomous Driving】1 生成式AI重塑自动驾驶的技术浪潮与体系化挑战
论文阅读·人工智能·深度学习·机器学习·ai·自动驾驶
故事和你914 小时前
sdut-python-实验四-python序列结构(21-27)
大数据·开发语言·数据结构·python·算法