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

13
1_Grundlagen/ü3/b.py Normal file
View File

@@ -0,0 +1,13 @@
import numpy as np
import cv2
# Hiermit kann die Methode für die Berechnung ausgewählt werden
METHOD = "MANUELL" # OpenCV
# Einlesen des Bildes
filepath = "../../data/lena.png"
img = cv2.imread(filepath)
h, w, c = img.shape
# todo Schritte 1-3 implementieren!