python opencv 内存泄露_python - OpenCV Python裁剪图像 - 堆栈内存溢出

您可以使用轻松在python中裁剪图像

roi = oriImage[refPoint[0][1]:refPoint[1][1], refPoint[0][0]:refPoint[1][0]]

为了得到两点,可以调用cv2.setMouseCallback("image", mouse_crop) 。 该功能是这样的

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)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值