From 216a859fc886350edf479d2df82cae709e51d010 Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Sat, 9 Aug 2014 09:28:00 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 339a48d..3d955d6 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,9 @@ Please post questions or comments to the Google group list: https://groups.googl Contributions ------------- -Code contributions are not the only way to help out. Do you have a large library of license plate images? Do you have time to "tag" plate images in an input image? If so, please add a note to the forum. +Improvements to the OpenALPR library are always welcome. Please review the [OpenALPR design description](https://github.com/openalpr/openalpr/wiki/OpenALPR-Design) and get started. + +Code contributions are not the only way to help out. Do you have a large library of license plate images? If so, please [upload your data](http://demo.openalpr.com:5000/). Do you have time to "tag" plate images in an input image or help in other ways? Please let everyone know by posting a note in the forum. Donations --------- From 0bfda584516ced1511ea331c9edf6086e7e61a48 Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Sun, 10 Aug 2014 00:26:50 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d955d6..3db9492 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Contributions ------------- Improvements to the OpenALPR library are always welcome. Please review the [OpenALPR design description](https://github.com/openalpr/openalpr/wiki/OpenALPR-Design) and get started. -Code contributions are not the only way to help out. Do you have a large library of license plate images? If so, please [upload your data](http://demo.openalpr.com:5000/). Do you have time to "tag" plate images in an input image or help in other ways? Please let everyone know by posting a note in the forum. +Code contributions are not the only way to help out. Do you have a large library of license plate images? If so, please upload your data to the anonymous FTP located at upload.openalpr.com. Do you have time to "tag" plate images in an input image or help in other ways? Please let everyone know by posting a note in the forum. Donations --------- From 4e490221647f1ef4fbbdb6d9f52b9bdde3e095bd Mon Sep 17 00:00:00 2001 From: silaha Date: Sun, 17 Aug 2014 22:13:37 +0400 Subject: [PATCH 3/3] Update plate_size_quota.py refactored the repeated BYTES_IN_A_MEGABYTE value. --- plate_size_quota.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plate_size_quota.py b/plate_size_quota.py index 72ebb1e..f10e5df 100644 --- a/plate_size_quota.py +++ b/plate_size_quota.py @@ -4,7 +4,7 @@ import shutil BYTES_IN_A_MEGABYTE = 1048576 size_quota_mb=200000 -size_quota_bytes = size_quota_mb * 1048576 +size_quota_bytes = size_quota_mb * BYTES_IN_A_MEGABYTE dir='/var/www/html/plates/'