正在尝试 运行 Pycharm 中的一个程序
Trying to run a program in Pycharm
我必须测试 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()
如果你知道如何运行,请告诉我。一直在寻找答案却一无所获
正如@Yves Daoust 提到的,您基本上有两个选择:
A) 要么更改您正在测试的代码以提供所需的参数,要么
B) 使用 运行->运行...->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 提供 Apply(按钮)您插入的更改的选项(在这种情况下,这意味着只要保持此脚本的参数存储脚本将在内存中)。
希望这能澄清一些事情。
您必须转到 运行 > 运行,然后 select 您想要的程序 运行。如果仍然出错,请检查文件路径,否则,您的代码中有错误。我希望这能回答你的问题。
我必须测试 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()
如果你知道如何运行,请告诉我。一直在寻找答案却一无所获
正如@Yves Daoust 提到的,您基本上有两个选择:
A) 要么更改您正在测试的代码以提供所需的参数,要么
B) 使用 运行->运行...->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 提供 Apply(按钮)您插入的更改的选项(在这种情况下,这意味着只要保持此脚本的参数存储脚本将在内存中)。
希望这能澄清一些事情。
您必须转到 运行 > 运行,然后 select 您想要的程序 运行。如果仍然出错,请检查文件路径,否则,您的代码中有错误。我希望这能回答你的问题。