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

View File

@@ -0,0 +1,10 @@
import cv2
from . import Algorithm
class ImageToGray(Algorithm):
""" Converts a BGR image to grayscale"""
def process(self, img):
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
return img