-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperate_images_with_cv2.py
36 lines (27 loc) · 1.21 KB
/
operate_images_with_cv2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import cv2 as cv
import numpy as np
path = './test_images/gray_depth.png'
image = cv.imread(path) # 读取图片,格式为BGR, three modes, cv2.IMREAD_COLOR for ignoring the alpha
# cv2.IMREAD_GRAYSCALE for gray mode, cv2.IMREAD_UNCHANGED for loading alpha
'''
对 8 位无符号图像,按原样显示;
对 16 位无符号或 32 位整数图像,将像素值范围 [0,255 * 256] 映射到 [0,255] 显示;
对 32 位浮点图像,将像素值范围 [0,1] 映射到 [0,255] 显示;
'''
cv.imshow('color_depth', image)
cv.waitKey(0)
print("image_shape: ", image.shape) # h, w, c
print(type(image)) # numpy.ndarray
#image = cv.cvtColor(cv_image, cv.COLOR_BGR2GRAY ) #转灰度
#image = cv.cvtColor(cv_image, cv.COLOR_BGR2RGB )
#downsample
width = int(image.shape[0] / 2)
height = int(image.shape[1] / 2)
image = cv.resize(image, (height, width), interpolation=cv.INTER_CUBIC)
#visualization:
gray_depth_visualization = np.uint8(image * 255.0 / image.max())
# use 255.0 rather 255 to avoid stack overflowing
# or use gray_depth_visualization = np.array(image * 255.0 / image.max(), dtype=’uint8′)
#save the image
cv.imwrite('destination', image)
cv.destroyAllWindows()