Skip to content

Commit 9102cfe

Browse files
committed
commot
1 parent 90cf1a1 commit 9102cfe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ch01-关于OpenCV/OpenCV图像坐标系_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
import numpy as np
1515
import cv2
1616

17-
img = cv2.imread('../data/Lenna.png', cv2.IMREAD_UNCHANGED)
17+
img = cv2.imread('data/Lenna.png', cv2.IMREAD_UNCHANGED)
1818
print('img.shape:', img.shape)
19-
logo = cv2.imread('../data/opencv_logo.png', cv2.IMREAD_UNCHANGED)
19+
logo = cv2.imread('data/opencv_logo.png', cv2.IMREAD_UNCHANGED)
2020
logo = cv2.resize(logo, (20, 20))
2121
print('logo.shape:', logo.shape)
22-
butterfly= cv2.imread('../data/butterfly.jpg', cv2.IMREAD_UNCHANGED)
22+
butterfly= cv2.imread('data/butterfly.jpg', cv2.IMREAD_UNCHANGED)
2323
butterfly = cv2.resize(butterfly, (20, 20))
2424
print('butterfly.shape:', butterfly.shape)
2525

0 commit comments

Comments
 (0)