From 6308048d84c5dcee4d5135da9cb2f44e8e68eb38 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 2 Jul 2015 14:23:16 -0400 Subject: [PATCH] Updated copyright --- src/bindings/csharp/openalpr-net/openalpr-net.cpp | 8 ++++---- src/bindings/csharp/openalprnet-cli/CommandLine.cs | 6 +++--- src/bindings/csharp/openalprnet-cli/Program.cs | 6 +++--- src/bindings/csharp/openalprnet-windemo/Form1.cs | 6 +++--- src/bindings/csharp/openalprnet-windemo/Program.cs | 6 +++--- src/main.cpp | 8 ++++---- src/misc_utilities/benchmarks/benchmark.cpp | 8 ++++---- src/misc_utilities/binarizefontsheet.cpp | 8 ++++---- src/misc_utilities/calibrate.cpp | 8 ++++---- src/misc_utilities/classifychars.cpp | 8 ++++---- src/misc_utilities/prepcharsfortraining.cpp | 8 ++++---- src/misc_utilities/sortstate.cpp | 8 ++++---- src/misc_utilities/tagplates.cpp | 8 ++++---- src/openalpr/alpr.cpp | 8 ++++---- src/openalpr/alpr.h | 8 ++++---- src/openalpr/alpr_impl.cpp | 8 ++++---- src/openalpr/alpr_impl.h | 8 ++++---- src/openalpr/binarize_wolf.cpp | 8 ++++---- src/openalpr/binarize_wolf.h | 8 ++++---- src/openalpr/colorfilter.cpp | 8 ++++---- src/openalpr/colorfilter.h | 8 ++++---- src/openalpr/config.cpp | 8 ++++---- src/openalpr/config.h | 8 ++++---- src/openalpr/constants.h | 8 ++++---- src/openalpr/detection/detector.cpp | 8 ++++---- src/openalpr/detection/detector.h | 8 ++++---- src/openalpr/detection/detectorcpu.cpp | 8 ++++---- src/openalpr/detection/detectorcpu.h | 8 ++++---- src/openalpr/detection/detectorcuda.cpp | 8 ++++---- src/openalpr/detection/detectorcuda.h | 8 ++++---- src/openalpr/detection/detectorfactory.h | 8 ++++---- src/openalpr/detection/detectormorph.cpp | 8 ++++---- src/openalpr/detection/detectormorph.h | 8 ++++---- src/openalpr/edges/edgefinder.cpp | 8 ++++---- src/openalpr/edges/edgefinder.h | 8 ++++---- src/openalpr/edges/platecorners.cpp | 8 ++++---- src/openalpr/edges/platecorners.h | 8 ++++---- src/openalpr/edges/platelines.cpp | 8 ++++---- src/openalpr/edges/platelines.h | 8 ++++---- src/openalpr/edges/scorekeeper.cpp | 8 ++++---- src/openalpr/edges/scorekeeper.h | 8 ++++---- src/openalpr/featurematcher.cpp | 8 ++++---- src/openalpr/featurematcher.h | 8 ++++---- src/openalpr/licenseplatecandidate.cpp | 8 ++++---- src/openalpr/licenseplatecandidate.h | 8 ++++---- src/openalpr/ocr.cpp | 8 ++++---- src/openalpr/ocr.h | 8 ++++---- src/openalpr/postprocess/postprocess.cpp | 8 ++++---- src/openalpr/postprocess/postprocess.h | 8 ++++---- src/openalpr/postprocess/regexrule.cpp | 8 ++++---- src/openalpr/postprocess/regexrule.h | 8 ++++---- src/openalpr/prewarp.cpp | 8 ++++---- src/openalpr/prewarp.h | 8 ++++---- src/openalpr/segmentation/charactersegmenter.cpp | 8 ++++---- src/openalpr/segmentation/charactersegmenter.h | 8 ++++---- src/openalpr/segmentation/segment.cpp | 8 ++++---- src/openalpr/segmentation/segment.h | 8 ++++---- src/openalpr/segmentation/segmentationgroup.cpp | 8 ++++---- src/openalpr/segmentation/segmentationgroup.h | 8 ++++---- src/openalpr/segmentation/verticalhistogram.cpp | 8 ++++---- src/openalpr/segmentation/verticalhistogram.h | 8 ++++---- src/openalpr/stateidentifier.cpp | 8 ++++---- src/openalpr/stateidentifier.h | 8 ++++---- src/openalpr/textdetection/characteranalysis.cpp | 8 ++++---- src/openalpr/textdetection/characteranalysis.h | 8 ++++---- src/openalpr/textdetection/linefinder.cpp | 8 ++++---- src/openalpr/textdetection/linefinder.h | 8 ++++---- src/openalpr/textdetection/platemask.cpp | 8 ++++---- src/openalpr/textdetection/platemask.h | 8 ++++---- src/openalpr/textdetection/textcontours.cpp | 8 ++++---- src/openalpr/textdetection/textcontours.h | 8 ++++---- src/openalpr/textdetection/textline.cpp | 8 ++++---- src/openalpr/textdetection/textline.h | 8 ++++---- src/openalpr/transformation.cpp | 8 ++++---- src/openalpr/transformation.h | 8 ++++---- src/openalpr/utility.cpp | 8 ++++---- src/openalpr/utility.h | 8 ++++---- src/video/videobuffer.cpp | 8 ++++---- 78 files changed, 308 insertions(+), 308 deletions(-) diff --git a/src/bindings/csharp/openalpr-net/openalpr-net.cpp b/src/bindings/csharp/openalpr-net/openalpr-net.cpp index b5a2b24..521988a 100644 --- a/src/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/src/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -1,9 +1,9 @@ /* -* Copyright (c) 2014 New Designs Unlimited, LLC +* Copyright (c) 2015 OpenALPR Technology, Inc. * -* This file is part of OpenAlpr.Net. +* This file is part of OpenALPR. * -* OpenAlpr.Net is free software: you can redistribute it and/or modify +* OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * @@ -467,4 +467,4 @@ namespace openalprnet { bool m_detectRegion; System::String^ m_defaultRegion; }; -} \ No newline at end of file +} diff --git a/src/bindings/csharp/openalprnet-cli/CommandLine.cs b/src/bindings/csharp/openalprnet-cli/CommandLine.cs index c861a6b..4241ad0 100644 --- a/src/bindings/csharp/openalprnet-cli/CommandLine.cs +++ b/src/bindings/csharp/openalprnet-cli/CommandLine.cs @@ -1,9 +1,9 @@ /* - * Copyright (c) 2015 Dr. Masroor Ehsan + * Copyright (c) 2015 OpenALPR Technology, Inc. * - * This file is part of OpenAlpr.Net. + * This file is part of OpenALPR. * - * OpenAlpr.Net is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/bindings/csharp/openalprnet-cli/Program.cs b/src/bindings/csharp/openalprnet-cli/Program.cs index 8dbd69a..fee8e32 100644 --- a/src/bindings/csharp/openalprnet-cli/Program.cs +++ b/src/bindings/csharp/openalprnet-cli/Program.cs @@ -1,9 +1,9 @@ /* - * Copyright (c) 2015 Dr. Masroor Ehsan + * Copyright (c) 2015 OpenALPR Technology, Inc. * - * This file is part of OpenAlpr.Net. + * This file is part of OpenALPR. * - * OpenAlpr.Net is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/bindings/csharp/openalprnet-windemo/Form1.cs b/src/bindings/csharp/openalprnet-windemo/Form1.cs index 902f87c..98587c8 100644 --- a/src/bindings/csharp/openalprnet-windemo/Form1.cs +++ b/src/bindings/csharp/openalprnet-windemo/Form1.cs @@ -1,9 +1,9 @@ /* - * Copyright (c) 2015 Dr. Masroor Ehsan + * Copyright (c) 2015 OpenALPR Technology, Inc. * - * This file is part of OpenAlpr.Net. + * This file is part of OpenALPR. * - * OpenAlpr.Net is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/bindings/csharp/openalprnet-windemo/Program.cs b/src/bindings/csharp/openalprnet-windemo/Program.cs index 70bc571..ddcfc49 100644 --- a/src/bindings/csharp/openalprnet-windemo/Program.cs +++ b/src/bindings/csharp/openalprnet-windemo/Program.cs @@ -1,9 +1,9 @@ /* - * Copyright (c) 2015 Dr. Masroor Ehsan + * Copyright (c) 2015 OpenALPR Technology, Inc. * - * This file is part of OpenAlpr.Net. + * This file is part of OpenALPR. * - * OpenAlpr.Net is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/main.cpp b/src/main.cpp index 6c22fe8..fd9b429 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/benchmarks/benchmark.cpp b/src/misc_utilities/benchmarks/benchmark.cpp index 8db0256..12fe6d5 100644 --- a/src/misc_utilities/benchmarks/benchmark.cpp +++ b/src/misc_utilities/benchmarks/benchmark.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/binarizefontsheet.cpp b/src/misc_utilities/binarizefontsheet.cpp index 5acf523..4b15d0a 100644 --- a/src/misc_utilities/binarizefontsheet.cpp +++ b/src/misc_utilities/binarizefontsheet.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/calibrate.cpp b/src/misc_utilities/calibrate.cpp index 4491538..54175dd 100644 --- a/src/misc_utilities/calibrate.cpp +++ b/src/misc_utilities/calibrate.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/classifychars.cpp b/src/misc_utilities/classifychars.cpp index 76c7c5d..ec403a2 100644 --- a/src/misc_utilities/classifychars.cpp +++ b/src/misc_utilities/classifychars.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/prepcharsfortraining.cpp b/src/misc_utilities/prepcharsfortraining.cpp index e905aa3..3b9fc09 100644 --- a/src/misc_utilities/prepcharsfortraining.cpp +++ b/src/misc_utilities/prepcharsfortraining.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/sortstate.cpp b/src/misc_utilities/sortstate.cpp index 8a1850e..7db2a33 100644 --- a/src/misc_utilities/sortstate.cpp +++ b/src/misc_utilities/sortstate.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/misc_utilities/tagplates.cpp b/src/misc_utilities/tagplates.cpp index 7ca24cd..4c731f4 100644 --- a/src/misc_utilities/tagplates.cpp +++ b/src/misc_utilities/tagplates.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/alpr.cpp b/src/openalpr/alpr.cpp index ac1998b..bb4bf28 100644 --- a/src/openalpr/alpr.cpp +++ b/src/openalpr/alpr.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/alpr.h b/src/openalpr/alpr.h index e0ac7f0..9c90a88 100644 --- a/src/openalpr/alpr.h +++ b/src/openalpr/alpr.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/alpr_impl.cpp b/src/openalpr/alpr_impl.cpp index ff83ecb..dcb524c 100644 --- a/src/openalpr/alpr_impl.cpp +++ b/src/openalpr/alpr_impl.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/alpr_impl.h b/src/openalpr/alpr_impl.h index 0872651..52a30a2 100644 --- a/src/openalpr/alpr_impl.h +++ b/src/openalpr/alpr_impl.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/binarize_wolf.cpp b/src/openalpr/binarize_wolf.cpp index 511fbe7..298f48a 100644 --- a/src/openalpr/binarize_wolf.cpp +++ b/src/openalpr/binarize_wolf.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/binarize_wolf.h b/src/openalpr/binarize_wolf.h index b024bfd..ca2e5be 100644 --- a/src/openalpr/binarize_wolf.h +++ b/src/openalpr/binarize_wolf.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/colorfilter.cpp b/src/openalpr/colorfilter.cpp index d7add3a..c861029 100644 --- a/src/openalpr/colorfilter.cpp +++ b/src/openalpr/colorfilter.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/colorfilter.h b/src/openalpr/colorfilter.h index a4998a1..74c0fef 100644 --- a/src/openalpr/colorfilter.h +++ b/src/openalpr/colorfilter.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/config.cpp b/src/openalpr/config.cpp index 008eae6..bd9b29e 100644 --- a/src/openalpr/config.cpp +++ b/src/openalpr/config.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/config.h b/src/openalpr/config.h index 11a0eb4..d8bac58 100644 --- a/src/openalpr/config.h +++ b/src/openalpr/config.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/constants.h b/src/openalpr/constants.h index cf1e3bb..e216761 100644 --- a/src/openalpr/constants.h +++ b/src/openalpr/constants.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detector.cpp b/src/openalpr/detection/detector.cpp index 5f2a9bc..4561957 100644 --- a/src/openalpr/detection/detector.cpp +++ b/src/openalpr/detection/detector.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detector.h b/src/openalpr/detection/detector.h index 392fb36..f44d7a9 100644 --- a/src/openalpr/detection/detector.h +++ b/src/openalpr/detection/detector.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectorcpu.cpp b/src/openalpr/detection/detectorcpu.cpp index 5bbeb6c..6d8b158 100644 --- a/src/openalpr/detection/detectorcpu.cpp +++ b/src/openalpr/detection/detectorcpu.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectorcpu.h b/src/openalpr/detection/detectorcpu.h index a7eb464..ef5662c 100644 --- a/src/openalpr/detection/detectorcpu.h +++ b/src/openalpr/detection/detectorcpu.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectorcuda.cpp b/src/openalpr/detection/detectorcuda.cpp index b57bb4f..7c3df11 100644 --- a/src/openalpr/detection/detectorcuda.cpp +++ b/src/openalpr/detection/detectorcuda.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2013 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2013 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectorcuda.h b/src/openalpr/detection/detectorcuda.h index aa639cb..5c75230 100644 --- a/src/openalpr/detection/detectorcuda.h +++ b/src/openalpr/detection/detectorcuda.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2013 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2013 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectorfactory.h b/src/openalpr/detection/detectorfactory.h index 8b50800..8aa3d83 100644 --- a/src/openalpr/detection/detectorfactory.h +++ b/src/openalpr/detection/detectorfactory.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectormorph.cpp b/src/openalpr/detection/detectormorph.cpp index c06c05c..0324aa4 100644 --- a/src/openalpr/detection/detectormorph.cpp +++ b/src/openalpr/detection/detectormorph.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2014 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/detection/detectormorph.h b/src/openalpr/detection/detectormorph.h index 5435cfc..364b16d 100644 --- a/src/openalpr/detection/detectormorph.h +++ b/src/openalpr/detection/detectormorph.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2014 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/edgefinder.cpp b/src/openalpr/edges/edgefinder.cpp index 9f4c4df..8d5a70c 100644 --- a/src/openalpr/edges/edgefinder.cpp +++ b/src/openalpr/edges/edgefinder.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/edgefinder.h b/src/openalpr/edges/edgefinder.h index 2619b69..584b824 100644 --- a/src/openalpr/edges/edgefinder.h +++ b/src/openalpr/edges/edgefinder.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/platecorners.cpp b/src/openalpr/edges/platecorners.cpp index cbfcf35..7f6a6d0 100644 --- a/src/openalpr/edges/platecorners.cpp +++ b/src/openalpr/edges/platecorners.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/platecorners.h b/src/openalpr/edges/platecorners.h index 12a1cbe..41a4c87 100644 --- a/src/openalpr/edges/platecorners.h +++ b/src/openalpr/edges/platecorners.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/platelines.cpp b/src/openalpr/edges/platelines.cpp index aba0a52..9a5798f 100644 --- a/src/openalpr/edges/platelines.cpp +++ b/src/openalpr/edges/platelines.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/platelines.h b/src/openalpr/edges/platelines.h index 33d49be..3cc7789 100644 --- a/src/openalpr/edges/platelines.h +++ b/src/openalpr/edges/platelines.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/scorekeeper.cpp b/src/openalpr/edges/scorekeeper.cpp index acb007e..f2d4307 100644 --- a/src/openalpr/edges/scorekeeper.cpp +++ b/src/openalpr/edges/scorekeeper.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/edges/scorekeeper.h b/src/openalpr/edges/scorekeeper.h index 76103fd..7963d34 100644 --- a/src/openalpr/edges/scorekeeper.h +++ b/src/openalpr/edges/scorekeeper.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/featurematcher.cpp b/src/openalpr/featurematcher.cpp index 2d92900..e03275e 100644 --- a/src/openalpr/featurematcher.cpp +++ b/src/openalpr/featurematcher.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/featurematcher.h b/src/openalpr/featurematcher.h index ce83087..98c5938 100644 --- a/src/openalpr/featurematcher.h +++ b/src/openalpr/featurematcher.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/licenseplatecandidate.cpp b/src/openalpr/licenseplatecandidate.cpp index ded6ee9..eba4fe5 100644 --- a/src/openalpr/licenseplatecandidate.cpp +++ b/src/openalpr/licenseplatecandidate.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/licenseplatecandidate.h b/src/openalpr/licenseplatecandidate.h index afd81d9..bce39fb 100644 --- a/src/openalpr/licenseplatecandidate.h +++ b/src/openalpr/licenseplatecandidate.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/ocr.cpp b/src/openalpr/ocr.cpp index 21d21a7..2409944 100644 --- a/src/openalpr/ocr.cpp +++ b/src/openalpr/ocr.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/ocr.h b/src/openalpr/ocr.h index 24b20b7..24b3a76 100644 --- a/src/openalpr/ocr.h +++ b/src/openalpr/ocr.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/postprocess/postprocess.cpp b/src/openalpr/postprocess/postprocess.cpp index b9ee9d2..2feb757 100644 --- a/src/openalpr/postprocess/postprocess.cpp +++ b/src/openalpr/postprocess/postprocess.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/postprocess/postprocess.h b/src/openalpr/postprocess/postprocess.h index 203c10a..ee25c64 100644 --- a/src/openalpr/postprocess/postprocess.h +++ b/src/openalpr/postprocess/postprocess.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/postprocess/regexrule.cpp b/src/openalpr/postprocess/regexrule.cpp index 9493e23..c4bf857 100644 --- a/src/openalpr/postprocess/regexrule.cpp +++ b/src/openalpr/postprocess/regexrule.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/postprocess/regexrule.h b/src/openalpr/postprocess/regexrule.h index 3542899..8532e06 100644 --- a/src/openalpr/postprocess/regexrule.h +++ b/src/openalpr/postprocess/regexrule.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/prewarp.cpp b/src/openalpr/prewarp.cpp index e1cd908..5b6e960 100644 --- a/src/openalpr/prewarp.cpp +++ b/src/openalpr/prewarp.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/prewarp.h b/src/openalpr/prewarp.h index 0ed5e13..1d298ff 100644 --- a/src/openalpr/prewarp.h +++ b/src/openalpr/prewarp.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/charactersegmenter.cpp b/src/openalpr/segmentation/charactersegmenter.cpp index bb16cd0..2871d10 100644 --- a/src/openalpr/segmentation/charactersegmenter.cpp +++ b/src/openalpr/segmentation/charactersegmenter.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/charactersegmenter.h b/src/openalpr/segmentation/charactersegmenter.h index 4469c7c..76ec3f4 100644 --- a/src/openalpr/segmentation/charactersegmenter.h +++ b/src/openalpr/segmentation/charactersegmenter.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/segment.cpp b/src/openalpr/segmentation/segment.cpp index 94fd772..7e3715b 100644 --- a/src/openalpr/segmentation/segment.cpp +++ b/src/openalpr/segmentation/segment.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/segment.h b/src/openalpr/segmentation/segment.h index c5dc660..596e3c8 100644 --- a/src/openalpr/segmentation/segment.h +++ b/src/openalpr/segmentation/segment.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/segmentationgroup.cpp b/src/openalpr/segmentation/segmentationgroup.cpp index dab695a..c9ece68 100644 --- a/src/openalpr/segmentation/segmentationgroup.cpp +++ b/src/openalpr/segmentation/segmentationgroup.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/segmentationgroup.h b/src/openalpr/segmentation/segmentationgroup.h index a559bff..c0d3398 100644 --- a/src/openalpr/segmentation/segmentationgroup.h +++ b/src/openalpr/segmentation/segmentationgroup.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/verticalhistogram.cpp b/src/openalpr/segmentation/verticalhistogram.cpp index 661d28a..ee707ae 100644 --- a/src/openalpr/segmentation/verticalhistogram.cpp +++ b/src/openalpr/segmentation/verticalhistogram.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/segmentation/verticalhistogram.h b/src/openalpr/segmentation/verticalhistogram.h index 5d9d613..d27da7a 100644 --- a/src/openalpr/segmentation/verticalhistogram.h +++ b/src/openalpr/segmentation/verticalhistogram.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/stateidentifier.cpp b/src/openalpr/stateidentifier.cpp index 3757134..9e02ffb 100644 --- a/src/openalpr/stateidentifier.cpp +++ b/src/openalpr/stateidentifier.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/stateidentifier.h b/src/openalpr/stateidentifier.h index 2ea0501..c7680c0 100644 --- a/src/openalpr/stateidentifier.h +++ b/src/openalpr/stateidentifier.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/characteranalysis.cpp b/src/openalpr/textdetection/characteranalysis.cpp index d7e4f7c..06b0dfd 100644 --- a/src/openalpr/textdetection/characteranalysis.cpp +++ b/src/openalpr/textdetection/characteranalysis.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/characteranalysis.h b/src/openalpr/textdetection/characteranalysis.h index a8c5bcc..146770e 100644 --- a/src/openalpr/textdetection/characteranalysis.h +++ b/src/openalpr/textdetection/characteranalysis.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/linefinder.cpp b/src/openalpr/textdetection/linefinder.cpp index 691523e..13d6567 100644 --- a/src/openalpr/textdetection/linefinder.cpp +++ b/src/openalpr/textdetection/linefinder.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/linefinder.h b/src/openalpr/textdetection/linefinder.h index 43bb6d8..2228995 100644 --- a/src/openalpr/textdetection/linefinder.h +++ b/src/openalpr/textdetection/linefinder.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/platemask.cpp b/src/openalpr/textdetection/platemask.cpp index f95734d..878b017 100644 --- a/src/openalpr/textdetection/platemask.cpp +++ b/src/openalpr/textdetection/platemask.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/platemask.h b/src/openalpr/textdetection/platemask.h index 5e2da8f..c1a77d9 100644 --- a/src/openalpr/textdetection/platemask.h +++ b/src/openalpr/textdetection/platemask.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/textcontours.cpp b/src/openalpr/textdetection/textcontours.cpp index 311d298..8f4e80c 100644 --- a/src/openalpr/textdetection/textcontours.cpp +++ b/src/openalpr/textdetection/textcontours.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/textcontours.h b/src/openalpr/textdetection/textcontours.h index 6382567..30454dc 100644 --- a/src/openalpr/textdetection/textcontours.h +++ b/src/openalpr/textdetection/textcontours.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/textline.cpp b/src/openalpr/textdetection/textline.cpp index 68dcc73..03831d0 100644 --- a/src/openalpr/textdetection/textline.cpp +++ b/src/openalpr/textdetection/textline.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/textdetection/textline.h b/src/openalpr/textdetection/textline.h index 2bb29f2..34ad0fb 100644 --- a/src/openalpr/textdetection/textline.h +++ b/src/openalpr/textdetection/textline.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/transformation.cpp b/src/openalpr/transformation.cpp index ce7f6fc..7f0231d 100644 --- a/src/openalpr/transformation.cpp +++ b/src/openalpr/transformation.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/transformation.h b/src/openalpr/transformation.h index 330fa4e..7edf89b 100644 --- a/src/openalpr/transformation.h +++ b/src/openalpr/transformation.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/utility.cpp b/src/openalpr/utility.cpp index de3adf0..bd1c1be 100644 --- a/src/openalpr/utility.cpp +++ b/src/openalpr/utility.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/openalpr/utility.h b/src/openalpr/utility.h index 2159bd3..642fce2 100644 --- a/src/openalpr/utility.h +++ b/src/openalpr/utility.h @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation * diff --git a/src/video/videobuffer.cpp b/src/video/videobuffer.cpp index 9590da4..1ce2840 100644 --- a/src/video/videobuffer.cpp +++ b/src/video/videobuffer.cpp @@ -1,10 +1,10 @@ /* - * Copyright (c) 2015 New Designs Unlimited, LLC - * Opensource Automated License Plate Recognition [http://www.openalpr.com] + * Copyright (c) 2015 OpenALPR Technology, Inc. + * Open source Automated License Plate Recognition [http://www.openalpr.com] * - * This file is part of OpenAlpr. + * This file is part of OpenALPR. * - * OpenAlpr is free software: you can redistribute it and/or modify + * OpenALPR is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * version 3 as published by the Free Software Foundation *