Raphael Yee
Raphael Yee
@sourabh2k15 is it just me, or when I add extra combinations for plates: ``` def generate_code(): choices = [1,2] choice = random.choice(choices) if choice == 1: return "{}{}{}{}{}{}{}{}".format( random.choice(common.LETTERS), random.choice(common.LETTERS),...
@sourabh2k15 Ah yes! pardon me I totally forgot about the sizing requirements. Is it wise though to label the image 0 even if the sizing is small? My understanding is...
@sourabh2k15 Ahh okay, I'm having another issue: ``` Traceback (most recent call last): File "/usr/local/lib/python3.5/site-packages/tensorflow/python/client/session.py", line 1021, in _do_call return fn(*args) File "/usr/local/lib/python3.5/site-packages/tensorflow/python/client/session.py", line 1003, in _run_fn status, run_metadata) File...
@sourabh2k15 Thank you, what a lifesaver! I actually wrote code above to randomly create images with differing numberplate length. But now that I think about it, my input will be...
Change: `return cv2.imdecode(a, cv2.CV_LOAD_IMAGE_GRAYSCALE)` to: `return cv2.imdecode(a, 0)` The former has been deprecated in the newer version of OpenCV! :)
Can you post the full error? There is no context.