首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Python cv2 90:90宽高比矩形到裁剪图像

Python cv2 90:90宽高比矩形到裁剪图像
EN

Stack Overflow用户
提问于 2019-12-06 15:53:18
回答 2查看 182关注 0票数 0

我正在写一个程序来裁剪图像,我的问题是我想要那个矩形有一个特定的纵横比(90:90),有没有可能让矩形代替鼠标,用鼠标滚轮改变它的大小,并用鼠标点击确认?

代码语言:javascript
复制
import cv2
import numpy as np

cropping = False

x_start, y_start, x_end, y_end = 0, 0, 0, 0

image = cv2.imread('example.jpg')
oriImage = image.copy()


def mouse_crop(event, x, y, flags, param):
    # grab references to the global variables
    global x_start, y_start, x_end, y_end, cropping

    # if the left mouse button was DOWN, start RECORDING
    # (x, y) coordinates and indicate that cropping is being
    if event == cv2.EVENT_LBUTTONDOWN:
        x_start, y_start, x_end, y_end = x, y, x, y
        cropping = True

    # Mouse is Moving
    elif event == cv2.EVENT_MOUSEMOVE:
        if cropping == True:
            x_end, y_end = x, y

    # if the left mouse button was released
    elif event == cv2.EVENT_LBUTTONUP:
        # record the ending (x, y) coordinates
        x_end, y_end = x, y
        cropping = False # cropping is finished

        refPoint = [(x_start, y_start), (x_end, y_end)]

        if len(refPoint) == 2: #when two points were found
            roi = oriImage[refPoint[0][1]:refPoint[1][1], refPoint[0][0]:refPoint[1][0]]
            cv2.imshow("Cropped", roi)

cv2.namedWindow("image")
cv2.setMouseCallback("image", mouse_crop)

while True:

    i = image.copy()

    if not cropping:
        cv2.imshow("image", image)

    elif cropping:
        cv2.rectangle(i, (x_start, y_start), (x_end, y_end), (255, 0, 0), 2)
        cv2.imshow("image", i)

    cv2.waitKey(1)

# close all open windows
cv2.destroyAllWindows()
EN

回答 2

Stack Overflow用户

发布于 2019-12-06 16:11:34

这是你可以用来做这件事的基本结构。在第一次单击时创建一个初始矩形,通过向上或向下滚动来调整矩形的大小,然后再次单击以完成裁剪。当矩形超出图像边界和变得“小于零”时,您需要添加一些检查来限制矩形。

代码语言:javascript
复制
# if the left mouse button was released
if event == cv2.EVENT_LBUTTONUP:
    # create rectangle
    if not cropping:
        x_start, y_start = x-20, y-20
        x_end, y_end = x+20, y+20
        cropping = True # cropping is finished
    # finish cropping
    else:
        refPoint = [(x_start, y_start), (x_end, y_end)]

        if len(refPoint) == 2: #when two points were found
            roi = oriImage[refPoint[0][1]:refPoint[1][1], refPoint[0][0]:refPoint[1][0]]
            cv2.imshow("Cropped", roi)

elif event == cv2.EVENT_MOUSEWHEEL:
    print(flags)
    # scroll up
    if flags > 0:
        x_start, y_start = x_start-2, y_start-2
        x_end, y_end = x_end+2, y_end+2
    # scroll down
    else:
        x_start, y_start = x_start+2, y_start+2
        x_end, y_end = x_end-2, y_end-2
票数 0
EN

Stack Overflow用户

发布于 2019-12-06 17:27:07

谢谢:)但是我还有一个问题,我的代码现在看起来是这样的:

代码语言:javascript
复制
import cv2
import numpy as np

cropping = False

x_start, y_start, x_end, y_end = 0, 0, 0, 0

image = cv2.imread('example.jpg')
oriImage = image.copy()


def mouse_crop(event, x, y, flags, param):
    # grab references to the global variables
    global x_start, y_start, x_end, y_end, cropping

    # if the left mouse button was DOWN, start RECORDING
    # (x, y) coordinates and indicate that cropping is being
    if event == cv2.EVENT_MOUSEMOVE:
        x_start, y_start, x_end, y_end = x, y, x+96, y+96
        cropping = True

    # Mouse is Moving
 #   elif event == cv2.EVENT_MOUSEMOVE:
 #       if cropping == True:
 #           x_end, y_end = x, y

    # if the left mouse button was released
    elif event == cv2.EVENT_LBUTTONUP:
        # record the ending (x, y) coordinates
#        x_end, y_end = x, y
        cropping = False # cropping is finished

        refPoint = [(x_start, y_start), (x_end, y_end)]

        if len(refPoint) == 2: #when two points were found
            roi = oriImage[refPoint[0][1]:refPoint[1][1], refPoint[0][0]:refPoint[1][0]]
            cv2.imshow("Cropped", roi)

    elif event == cv2.EVENT_MOUSEWHEEL:
        print(flags)
        # scroll up
        if flags > 0:
            x_start, y_start = x_start-15, y_start-15
            x_end, y_end = x_end+15, y_end+15
        # scroll down
        else:
            x_start, y_start = x_start+15, y_start+15
            x_end, y_end = x_end-15, y_end-15

cv2.namedWindow("image")
cv2.setMouseCallback("image", mouse_crop)

while True:

    i = image.copy()

    if not cropping:
        cv2.imshow("image", image)

    elif cropping:
        cv2.rectangle(i, (x_start, y_start), (x_end, y_end), (255, 0, 0), 2)
        cv2.imshow("image", i)

    cv2.waitKey(1)

# close all open windows
cv2.destroyAllWindows()

我的问题是:矩形跟随我的鼠标,我可以用鼠标滚轮把它变大变小,但如果我把它变大,鼠标移动,它又变小了。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/59209036

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档