added feature enum | fixed image_processing crop

This commit is contained in:
Lukas K
2024-10-18 11:25:35 +02:00
parent 625f61ca4f
commit 2484e8f854
3 changed files with 47 additions and 29 deletions

7
src/feature.py Normal file
View File

@@ -0,0 +1,7 @@
from enum import Enum, auto
class Feature(Enum):
OVERALL_COLOR_PERCENTAGE = auto()
RASTER_COLOR_PERCENTAGE = auto()
CORNERS = auto()
EDGES = auto()