Initial commit with project files

This commit is contained in:
2025-06-27 14:34:11 +02:00
commit 7ea3207e63
310 changed files with 9331 additions and 0 deletions

10
1_Grundlagen/ü5/a.py Normal file
View File

@@ -0,0 +1,10 @@
import cv2
""" Read images """
img1 = cv2.imread("data/kitti1.png")
img2 = cv2.imread("data/kitti2.png")
img3 = cv2.imread("data/kitti3.png")
cv2.imshow("Global-Shutter", img3)
cv2.waitKey(0)