繁体   English   中英

Python - 如何从列表中提取元组?

[英]Python - how do I extract a tuple from a list?

我有两个坐标存储在我的变量points[(100, 50)]我试图用pyautogui.moveTo(points)移动我的鼠标,但出现错误:

pyautogui.PyAutoGUIException: The supplied sequence must have exactly 2 or exactly 4 elements (0 were received).

我认为这意味着我传递的是单个列表对象而不是坐标。

表达式[(100, 50)]是什么意思以及如何将 x 和 y 转换为两个元素。

我从中获得points的源代码:

import cv2 as cv
import numpy as np

class Vision:

# properties
needle_img = None
needle_w = 0
needle_h = 0
method = None

# constructor
def __init__(self, needle_img_path, method=cv.TM_CCOEFF_NORMED):
    self.needle_img = cv.imread(needle_img_path, cv.IMREAD_UNCHANGED)

    # Save the dimensions of the needle image
    self.needle_w = self.needle_img.shape[1]
    self.needle_h = self.needle_img.shape[0]

    self.method = method

def find(self, haystack_img, threshold=0.5, debug_mode=None):
    # run the OpenCV algorithm
    result = cv.matchTemplate(haystack_img, self.needle_img, self.method)
    # Get the all the positions from the match result that exceed our threshold
    locations = np.where(result >= threshold)
    locations = list(zip(*locations[::-1]))

    for loc in locations:
        rect = [int(loc[0]), int(loc[1]), self.needle_w, self.needle_h]
        # Add every box to the list twice in order to retain single (non-overlapping) boxes
        rectangles.append(rect)
        rectangles.append(rect)
    # Apply group rectangles
    rectangles, weights = cv.groupRectangles(rectangles, groupThreshold=1, eps=0.5)

    points = []
    if len(rectangles):

        line_color = (0, 255, 0)
        line_type = cv.LINE_4
        marker_color = (255, 0, 255)
        marker_type = cv.MARKER_CROSS

        # Loop over all the rectangles
        for (x, y, w, h) in rectangles:

            # Determine the center position
            center_x = x + int(w/2)
            center_y = y + int(h/2)
            # Save the points
            points.append((center_x, center_y))

            if debug_mode == 'rectangles':
                # Determine the box position
                top_left = (x, y)
                bottom_right = (x + w, y + h)
                # Draw the box
                cv.rectangle(haystack_img, top_left, bottom_right, color=line_color, 
                            lineType=line_type, thickness=2)
            elif debug_mode == 'points':
                # Draw the center point
                cv.drawMarker(haystack_img, (center_x, center_y), 
                            color=marker_color, markerType=marker_type, 
                            markerSize=40, thickness=2)

    if debug_mode:
        cv.imshow('Matches', haystack_img)

    return points

表达式 [(100, 50)] 是什么意思以及如何将 x 和 y 转换为两个元素。

[...]创建一个包含您放入其中的任何内容的列表。 (100, 50)创建一个包含整数10050的元组。 所以你有一个包含一个包含两个数字的元组的列表。

我认为这意味着我传递的是单个列表对象而不是坐标。

你说得对,有点 问题不在于您传递的是单个列表对象,而是需要传递单个列表或更确切地说是序列对象。 问题是该列表对象只包含一个元素:元组。

您可以通过查看列表的len来检查这一点:

>>> l = [(100, 50)]
>>> len(l)
1

您打算使用它的方式pyautogui.moveTo(points)一个包含两个元素的序列(列表或元组)。 这些元素是您要移动到的点的坐标。

列表中的元组是这个二元素序列,所以这就是你需要传递的:

pyautogui.moveTo(points[0])

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM