Coverage for image_preprocessing/template_matching.py : 80%

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 os import numpy as np import imutils from pathlib import Path from hutts_utils.hutts_logger import logger from hutts_utils.pypath import correct_path
TEMPLATE_DIR = correct_path(Path(os.path.abspath(os.path.dirname(__file__)), 'templates'))
class TemplateMatching: """ The TemplateMatching class receives template images to identify the type of identification that is used in the image. Thus you provide it with templates and it will identify whether you used an id card, id book etc. """
def __init__(self): (875, cv2.imread(TEMPLATE_DIR + "/wap.jpg"), 0.60, "idbook"), (1280, cv2.imread(TEMPLATE_DIR + "/pp2.jpg"), 0.60, "studentcard")]
def identify(self, source): """ This function identifies the src image by searching for the templates provided. Author(s): Marno Hermann Args: source (Image) : The image that needs to be identified
Returns: string : Returns a string if no type could be identified, None is returned
Example usage: identify(args["image"]]) """ # load the source and template image # find the template in the source image
# first two parameters create a range of [0.8;1.8]. 10 specifies that we want to split the # range in 20 equal sizes. Each of them is used as a ratio value to get different image sizes. # [::-1] just reverses the np array to start from 1.8 and down to 0.8. # resize the image according to the scale, and keep track # of the ratio of the resizing
# if the resized image is smaller than the template, then break # from the loop
|