Models¶
These are models that are used as return-types for functions.
FilterSettings¶
- class autocv.models.filter_settings.FilterSettings(h_min: int = 0, h_max: int = 179, s_min: int = 0, s_max: int = 255, v_min: int = 0, v_max: int = 255, s_add: int = 0, s_subtract: int = 0, v_add: int = 0, v_subtract: int = 0, canny_threshold1: int = 0, canny_threshold2: int = 0, erode_kernel_size: int = 0, dilate_kernel_size: int = 0)[source]¶
Stores settings for image processing filters.
Exceptions¶
Module to define custom exceptions for the AutoCV project.
This module provides custom exception classes to indicate specific errors that can occur in the application, such as invalid handles, images, or lengths.
- exception autocv.models.exceptions.InvalidHandleError(hwnd: int)[source]¶
Exception raised when an invalid window handle is encountered.