Coverage for image_processing/barcode_manager.py : 71%

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 numpy as np import cv2 import zbar.misc
# The minimum area a rectangle must be to be considered a barcode. BOUNDING_RECTANGLE_THRESHOLD = 200
class BarCodeManager: """ The BarCode Manager is responsible for: 1. Detecting the barcode. 2. Extracting any information on the detected barcode. 3. Applying blurring to the detected barcode to reduce noise. """
def __init__(self):
def detect(self, image): """ This function detects a region containing a Barcode if a Barcode is present in the image passed Barcodes supported: EAN UPC Code 39 Code 93 Code 128 ITF For more information on Barcode types: https://www.scandit.com/types-barcodes-choosing-right-barcode/ Author(s): Stephan Nell Args: image (:obj:'OpenCV image'): Image containing the potential barcode. Returns: Boolean: A value of True is returned if a Barcode was detected If however a barcode was not detected a value of false is returned. obj:'OpenCV image': If a Barcode was successfully detected the detected barcode is returned. If a barcode was not detected return the original image. Integer List: This list contains the box coordinates for the region in which the barcode resides. Raises: TypeError: If a none numpy array value has been passed Todo: Find a way to support PDF417 format. """ 'Bad type for arg image - expected image in numpy array. Received type "%s".' % type(image).__name__ )
cv2.CHAIN_APPROX_SIMPLE)
# The Difference between the upper and lower Y-value is calculated to ensure a Barcode is detected. # This reduces the chance of a false positive detection. else: return False, image, box
def get_barcode_info(self, image): """ This function returns scanned barcode information. Author(s): Stephan Nell Args: image (:obj:'OpenCV image'): Image containing a Barcode. Returns: Boolean: A value of True if the function was able to extract information from the barcode. If no information was extracted from the barcode a value of False is returned. String: A UTF-8 String containing the information extracted from the Barcode. If no information was extracted from the barcode a empty string is returned. obj:'OpenCV image': A copy of the original image. Todo: Find a way to support PDF417 format. """ else: image = self.apply_barcode_blur(image, box) return True, results[0].data, image else: return False, "", image
def apply_barcode_blur(self, image, box, dilation_intensity=2): """ This function applies blurring to a detected barcode region to reduce noise in the image. The barcode region is first extracted, then blurring is applied, after blurring is applied the blurred out barcode is reapplied to the original image. Author(s): Stephan Nell Args: image (:obj:'OpenCV image'): Image containing a Barcode. box: The box is an integer list containing the box region coordinates of the barcode location. dilation_intensity (int): Indicates the intensity by which the barcode should be dilated. The greater the intensity the greater the extent of dilation. Greater intensity leads to reduce of speed with every iterations. Returns: obj:'OpenCV image': The Original image with blurring applied to the barcode region in the image. """ |