官术网_书友最值得收藏!

Reading images in OpenCV

The following example, argparse_load_image.py, shows you how to load an image:

# Import the required packages
import argparse
import cv2

# We first create the ArgumentParser object
# The created object 'parser' will have the necessary information
# to parse the command-line arguments into data types.
parser = argparse.ArgumentParser()

# We add 'path_image' argument using add_argument() including a help. The type of this argument is string (by default)
parser.add_argument("path_image", help="path to input image to be displayed")

# The information about program arguments is stored in 'parser'
# Then, it is used when the parser calls parse_args().
# ArgumentParser parses arguments through the parse_args() method:
args = parser.parse_args()

# We can now load the input image from disk:
image = cv2.imread(args.path_image)

# Parse the argument and store it in a dictionary:
args = vars(parser.parse_args())

# Now, we can also load the input image from disk using args:
image2 = cv2.imread(args["path_image"])

# Show the loaded image:
cv2.imshow("loaded image", image)
cv2.imshow("loaded image2", image2)

# Wait until a key is pressed:
cv2.waitKey(0)

# Destroy all windows:
cv2.destroyAllWindows()

In this example, the required argument is path_image, which contains the path of the image we want to load. The path of the image is a string. Therefore, no type should be included in the positional argument because it is a string by default. Both args.path_image and args["path_image"] will contain the path of the image (two different ways of getting the value from the parameter), so we will use them as the parameter of the cv2.imread() function.

主站蜘蛛池模板: 合江县| 湖南省| 类乌齐县| 盘锦市| 吉木萨尔县| 航空| 柘城县| 白玉县| 定西市| 综艺| 东乌珠穆沁旗| 上犹县| 德惠市| 松滋市| 平和县| 福鼎市| 聊城市| 饶河县| 浑源县| 黄山市| 绍兴县| 清徐县| 周口市| 安国市| 安国市| 从江县| 五常市| 加查县| 洪泽县| 云南省| 瓦房店市| 施甸县| 右玉县| 诸城市| 开鲁县| 贞丰县| 霸州市| 栖霞市| 平南县| 柳州市| 长顺县|