This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Detecting Barcodes in Images with Python and OpenCV | |
# OpenCV 3.0 | |
# http://www.pyimagesearch.com/2014/11/24/detecting-barcodes-images-python-opencv/ | |
import numpy as np | |
import argparse | |
import cv2 | |
ap = argparse.ArgumentParser() | |
ap.add_argument("-i","--image", required = True, help="path to image file") |