【问题标题】:Trying to run a program in Pycharm尝试在 Pycharm 中运行程序
【发布时间】:2020-12-31 12:59:03
【问题描述】:

我必须在 Pycharm 中测试代码(问题的底部),但我无法弄清楚如何在 Pycharm 中运行它而不出现此错误:

usage: color.py [-h] -i IMAGE
color.py: error: the following arguments are required: -i/--image

我知道如果我使用 Idle,我会编写以下代码:

/Users/syedrishad/Downloads/python-project-color-detection/color_detection.py -i 
Users/syedrishad/Downloads/python-project-color-detection/colorpic.jpg

但我不知道如何在 Pycharm 上运行它 我使用的是 mac,出于某种原因,我总是必须输入完整的路径名,否则它不起作用。(如果这有所作为) 这个程序使它,所以如果我双击图像的一部分,它会显示确切的颜色名称。所有颜色名称都存储在这个文件中:

/Users/syedrishad/Downloads/python-project-color-detection/colors.csv

实际代码在这里:

import cv2
import numpy as np
import pandas as pd
import argparse

#Creating argument parser to take image path from command line
ap = argparse.ArgumentParser()
ap.add_argument('-i', '--image', required=True, help="Image Path")
args = vars(ap.parse_args())
img_path = args['image']

#Reading the image with opencv
img = cv2.imread(img_path)

#declaring global variables (are used later on)
clicked = False
r = g = b = xpos = ypos = 0

#Reading csv file with pandas and giving names to each column
index=["color","color_name","hex","R","G","B"]
csv = pd.read_csv('colors.csv', names=index, header=None)

#function to calculate minimum distance from all colors and get the most matching color
def getColorName(R,G,B):
    minimum = 10000
    for i in range(len(csv)):
        d = abs(R- int(csv.loc[i,"R"])) + abs(G- int(csv.loc[i,"G"]))+ abs(B- int(csv.loc[i,"B"]))
        if(d<=minimum):
            minimum = d
            cname = csv.loc[i,"color_name"]
    return cname

#function to get x,y coordinates of mouse double click
def draw_function(event, x,y,flags,param):
    if event == cv2.EVENT_LBUTTONDBLCLK:
        global b,g,r,xpos,ypos, clicked
        clicked = True
        xpos = x
        ypos = y
        b,g,r = img[y,x]
        b = int(b)
        g = int(g)
        r = int(r)
       
cv2.namedWindow('image')
cv2.setMouseCallback('image',draw_function)

while(1):

    cv2.imshow("image",img)
    if (clicked):
   
        #cv2.rectangle(image, startpoint, endpoint, color, thickness)-1 fills entire rectangle 
        cv2.rectangle(img,(20,20), (750,60), (b,g,r), -1)

        #Creating text string to display( Color name and RGB values )
        text = getColorName(r,g,b) + ' R='+ str(r) +  ' G='+ str(g) +  ' B='+ str(b)
        
        #cv2.putText(img,text,start,font(0-7),fontScale,color,thickness,lineType )
        cv2.putText(img, text,(50,50),2,0.8,(255,255,255),2,cv2.LINE_AA)

        #For very light colours we will display text in black colour
        if(r+g+b>=600):
            cv2.putText(img, text,(50,50),2,0.8,(0,0,0),2,cv2.LINE_AA)
            
        clicked=False

    #Break the loop when user hits 'esc' key    
    if cv2.waitKey(20) & 0xFF ==27:
        break
    
cv2.destroyAllWindows()

如果你会跑步,请告诉我。我一直在寻找答案,但空手而归。

【问题讨论】:

  • 你可以破解代码来硬编码命令行参数,或者通过Run &gt; Edit Configurations...添加它们

标签: python opencv pycharm python-idle


【解决方案1】:

正如@Yves Daoust 所说,您基本上有两种选择:

A) 要么更改您正在测试的代码以提供所需的参数,要么

B) 使用 Run->Run...->Edit Configurations... 提供参数,就像在命令行中一样。

让我们更详细地研究一下您拥有的选项:
A)最简单的方法是提供您要打开的图像的路径,如下所示:

# replace img_path = args['image'] with
img_path = 'path/to/the/image'

它的优点是非常容易获得,但它破坏了 argparser 功能。

一种更通用的解决方案是提供一个默认参数,并在每次您要打开图像时对其进行编辑。

import argparse

# Add a global variable here. It will provide the argument if no other is given (via `Run->Run...->Edit Configurations...`)
IMAGE_PATH = 'path/to/image'
#Creating argument parser to take image path from command line
ap = argparse.ArgumentParser()
ap.add_argument('-i', '--image', required=True, help="Image Path", default=IMAGE_PATH)

如果您对此感兴趣,它的优点是可以保持 arg 解析功能不变。

B) 此选项意味着您自己提供参数,就像在控制台中一样。参数放在 Parameters: 字段中。
例如你可以通过:

--image="path/to/image"

PyCharm 提供了应用(按钮)您插入的更改的选项(在这种情况下,这意味着只要脚本在内存中,就保留为该脚本存储的参数)。

希望这能澄清一点。

【讨论】:

  • 您好,谢谢,它的工作没有任何直接错误,但是每次我运行它时都会弹出一个黑色的东西而不是实际的图像,然后我收到一条消息说 python 没有响应
  • 没关系,我只是忘记添加一部分代码
  • 如果您觉得某个答案有用,您也可以投票赞成(接受它作为最佳答案通常意味着您发现它很有用)。当然,您可以投票给任何答案。
【解决方案2】:

你必须去运行>运行然后选择你想运行的程序。如果它仍然给出错误,请检查文件路径,否则,您的代码中有错误。我希望这能回答你的问题。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-21
    • 2015-06-30
    • 1970-01-01
    • 1970-01-01
    • 2013-12-22
    • 2020-04-25
    相关资源
    最近更新 更多