Coverage for image_preprocessing/thresholding_manager.py : 82%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
import cv2 import numpy as np
class ThresholdingManager: """ The Thresholding manager is responsible for applying the different types of thresholding techniques. """ def __init__(self, thresholding_type): """ Initialise Thresholding manager. Authors(s): Nicolai van Niekerk, Stephan Nell Args: thresholding_type (str): Indicates the type of thresholding that should be applied. Raises: TypeError: If a parameter is passed that is not of type String. NameError: If the thresholding type is not Adaptive or Otsu. Returns: None
""" 'Bad type for arg thresholding_type - expected string. Received type "%s".' % type(thresholding_type).__name__ )
else:
def apply(self, image): """ This performs the thresholding based on the predefined technique. Author(s): Nicolai van Niekerk, Stephan Nell Args: image: The image to which the thresholding must be applied. Raises: NameError: If invalid thresholding type is provided. i.e. Adaptive or Otsu. Returns: obj:'OpenCV image': The threshold image. """ else:
@staticmethod def adaptiveThresholding(image): """ This function applies a simple adaptive thresholding to the image passed. Author(s): Stephan Nell Args: image (:obj:'OpenCV image'): Image to which thresholding should be applied. Raises: TypeError: If a parameter is passed that is not of type Numpy array. Returns: obj:'OpenCV image': The Threshold image. """ 'Bad type for arg image - expected image in numpy array. Received type "%s".' % type(image).__name__ )
@staticmethod def otsuThresholding(image): """ This function applies a simple Binary Inverse Otso thresholding to the image passed. Author(s): Stephan Nell Args: image (:obj:'OpenCV image'): Image to which thresholding should be applied. Raises: TypeError: If a parameter is passed that is not of type Numpy array. Returns: obj:'OpenCV image': The Threshold image. """ 'Bad type for arg image - expected image in numpy array. Received type "%s".' % type(image).__name__ )
|