Skip to content
Snippets Groups Projects
Commit abd9e691 authored by Joel Steffens's avatar Joel Steffens
Browse files

Neue Screenshots, Kommentare entfernt

parent bb3a348c
No related branches found
No related tags found
No related merge requests found
Screenshots/IMG_11_09_2023_12_43_35.png

1.2 MiB

Screenshots/IMG_11_09_2023_12_43_43.png

425 KiB

Screenshots/IMG_11_09_2023_12_43_45.png

471 KiB

Screenshots/IMG_11_09_2023_12_44_29.png

469 KiB

Screenshots/IMG_11_09_2023_12_44_44.png

317 KiB

Screenshots/IMG_11_09_2023_12_44_48.png

228 KiB

......@@ -95,7 +95,6 @@ info = {
result = None
visible_filter_idx = 0
while capture.isOpened():
# ret is the stat of the reading
ret, frame = capture.read()
if ret == True:
frame, _ = filters.resize(info, frame, None)
......@@ -110,7 +109,6 @@ while capture.isOpened():
result = frame
image = result
for i, (name, filter) in enumerate(pipeline):
# Apply each filter
result, overlay = filter(info, result, state)
if result is None:
......
......@@ -199,7 +199,7 @@ def grayscale(info, image, state):
# Schärfe des Bild erhöhen
def median_blur(info, image, state):
# Median-Blur auf Bild anwenden
blur = cv.medianBlur(image, 7)
blur = cv.medianBlur(image, 5)
# beide Bilder zusammenfassen
sharp = cv.addWeighted(image, 1.5, blur, -0.5, 0.0)
return sharp, False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment