marearts-anpr 3.7.2__cp312-cp312-win_amd64.whl → 3.7.6__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
marearts_anpr/_version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """Version information for marearts-anpr package."""
2
2
 
3
- __version__ = "3.7.2"
3
+ __version__ = "3.7.6"
marearts_anpr/cli.py CHANGED
@@ -623,33 +623,77 @@ def cmd_test_api(args):
623
623
  # List models option
624
624
  if hasattr(args, 'list_models') and args.list_models:
625
625
  print("Available Test API Models (Public Cloud Service):")
626
- print("=" * 50)
626
+ print("=" * 70)
627
627
 
628
- print("\n📍 DETECTOR MODELS (Legacy only - no V14 on public API):")
629
- print("-" * 40)
630
- print(" v10 Series:")
631
- print(" - v10_nano, v10_small, v10_middle, v10_large, v10_xlarge")
632
- print(" v11 Series:")
633
- print(" - v11_nano, v11_small, v11_middle, v11_large")
634
- print(" v13 Series (Recommended):")
635
- print(" - v13_nano, v13_small, v13_middle, v13_large")
628
+ print("\n🚀 V14 DETECTOR MODELS (Recommended):")
629
+ print("-" * 70)
630
+ print(" 640p FP32 (Standard Precision):")
631
+ print(" • v14_pico_640p_fp32 - Fastest, good for real-time")
632
+ print(" v14_micro_640p_fp32 - Balanced speed/accuracy")
633
+ print(" • v14_small_640p_fp32 - Good accuracy")
634
+ print(" • v14_medium_640p_fp32 - Best overall (DEFAULT)")
635
+ print(" • v14_large_640p_fp32 - Highest accuracy")
636
636
 
637
- print("\n🔤 OCR MODELS:")
638
- print("-" * 40)
639
- print(" Base Models:")
640
- print(" - eu, euplus, kr, cn, univ")
641
- print(" v11 Series:")
642
- print(" - v11_eu, v11_euplus, v11_kr, v11_cn, v11_univ")
643
- print(" v13 Series (Recommended):")
644
- print(" - v13_eu, v13_euplus, v13_kr, v13_cn, v13_univ")
637
+ print("\n 640p FP16 (Half Precision - Faster on GPU):")
638
+ print(" • v14_pico_640p_fp16")
639
+ print(" v14_micro_640p_fp16")
640
+ print(" v14_small_640p_fp16")
641
+ print(" v14_medium_640p_fp16")
642
+ print(" v14_large_640p_fp16")
645
643
 
646
- print("\n📝 NOTES:")
647
- print("-" * 40)
648
- print("• Daily limit: 1000 requests")
649
- print("• No authentication required")
650
- print("• V14 models NOT available on public API")
651
- print("• For V14 models, use local processing with V2 license")
652
- print("\n💡 Recommended: v13_middle + v13_euplus")
644
+ print("\n 320p FP32 (Lower Resolution - Faster):")
645
+ print(" • v14_pico_320p_fp32")
646
+ print(" v14_micro_320p_fp32")
647
+ print(" v14_small_320p_fp32")
648
+ print(" v14_medium_320p_fp32")
649
+ print(" v14_large_320p_fp32")
650
+
651
+ print("\n 320p FP16:")
652
+ print(" • v14_pico_320p_fp16")
653
+ print(" • v14_micro_320p_fp16")
654
+ print(" • v14_small_320p_fp16")
655
+ print(" • v14_medium_320p_fp16")
656
+ print(" • v14_large_320p_fp16")
657
+
658
+ print("\n🔤 V14 OCR MODELS:")
659
+ print("-" * 70)
660
+ print(" FP32 (Standard Precision):")
661
+ print(" • v14_pico_fp32")
662
+ print(" • v14_micro_fp32")
663
+ print(" • v14_small_fp32 - ⭐ Good balance (DEFAULT)")
664
+ print(" • v14_medium_fp32 - Better accuracy")
665
+ print(" • v14_large_fp32 - Highest accuracy")
666
+
667
+ print("\n🌍 REGIONS (Required for V14 OCR):")
668
+ print("-" * 70)
669
+ print(" • kr - Korean plates")
670
+ print(" • eup - European+ plates (EU countries + more)")
671
+ print(" • na - North American plates")
672
+ print(" • cn - Chinese plates")
673
+ print(" • univ - Universal (all regions)")
674
+
675
+ print("\n💡 RECOMMENDED COMBINATIONS:")
676
+ print("-" * 70)
677
+ print(" European plates: --detector v14_medium_640p_fp32 --ocr v14_small_fp32 --region eup")
678
+ print(" Korean plates: --detector v14_medium_640p_fp32 --ocr v14_small_fp32 --region kr")
679
+ print(" Fast processing: --detector v14_micro_640p_fp32 --ocr v14_micro_fp32 --region eup")
680
+ print(" Best accuracy: --detector v14_large_640p_fp32 --ocr v14_large_fp32 --region eup")
681
+
682
+ print("\n📝 USAGE NOTES:")
683
+ print("-" * 70)
684
+ print(" • Daily limit: 1000 requests (resets at midnight UTC)")
685
+ print(" • No authentication required (public test API)")
686
+ print(" • V14 models with region-specific vocabulary")
687
+ print(" • FP16 models faster on GPU, FP32 better for CPU")
688
+ print(" • 320p faster but may miss distant/small plates")
689
+ print(" • 640p recommended for best detection")
690
+
691
+ print("\n📚 EXAMPLES:")
692
+ print("-" * 70)
693
+ print(" ma-anpr test-api image.jpg")
694
+ print(" ma-anpr test-api image.jpg --region kr")
695
+ print(" ma-anpr test-api *.jpg --detector v14_small_640p_fp32 --region eup")
696
+ print(" ma-anpr test-api image.jpg --json results.json")
653
697
  return
654
698
 
655
699
  # Check if input files are provided
@@ -687,7 +731,8 @@ def cmd_test_api(args):
687
731
  'x-api-key': PUBLIC_API_KEY,
688
732
  'user-id': PUBLIC_USER_ID,
689
733
  'detector_model_version': args.detector,
690
- 'ocr_model_version': args.ocr
734
+ 'ocr_model_version': args.ocr,
735
+ 'region': args.region
691
736
  }
692
737
 
693
738
  # Make API request with security settings
@@ -907,10 +952,13 @@ def main():
907
952
  # Test API command
908
953
  test_api_parser = subparsers.add_parser('test-api', help='Test ANPR using public API (no credentials required)')
909
954
  test_api_parser.add_argument('input', nargs='*', help='Input image file(s)')
910
- test_api_parser.add_argument('--detector', default='v13_middle',
911
- help='Detector model (default: v13_middle)')
912
- test_api_parser.add_argument('--ocr', default='v13_euplus',
913
- help='OCR model (default: v13_euplus)')
955
+ test_api_parser.add_argument('--detector', default='v14_medium_640p_fp32',
956
+ help='Detector model (default: v14_medium_640p_fp32)')
957
+ test_api_parser.add_argument('--ocr', default='v14_medium_fp32',
958
+ help='OCR model (default: v14_medium_fp32)')
959
+ test_api_parser.add_argument('--region', default='eup',
960
+ choices=['kr', 'eup', 'na', 'cn', 'univ'],
961
+ help='Region for OCR (default: eup)')
914
962
  test_api_parser.add_argument('--list-models', action='store_true',
915
963
  help='List available models for test API')
916
964
  test_api_parser.add_argument('--json', help='Save results to JSON file')
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: marearts-anpr
3
- Version: 3.7.2
3
+ Version: 3.7.6
4
4
  Summary: MareArts ANPR (Automatic Number Plate Recognition) library with multi-region support
5
5
  Home-page: https://www.marearts.com
6
6
  Author: MareArts
@@ -20,13 +20,16 @@ License-File: LICENSE
20
20
  Requires-Dist: marearts-crystal==2.4.2
21
21
  Requires-Dist: onnxruntime>=1.0
22
22
  Requires-Dist: opencv-python>=4.0
23
- Requires-Dist: numpy>=1.19
24
23
  Requires-Dist: tqdm>=4.0
25
24
  Requires-Dist: requests>=2.0
26
25
  Requires-Dist: PyYAML>=6.0
27
26
  Requires-Dist: pillow>=10.0
28
27
  Requires-Dist: imageio>=2.0
29
28
  Requires-Dist: dotmap>=1.3
29
+ Requires-Dist: numpy<2.0,>=1.23.0; python_version == "3.10"
30
+ Requires-Dist: numpy<2.0,>=1.23.0; python_version == "3.11"
31
+ Requires-Dist: numpy<2.0,>=1.21.6; python_version == "3.9"
32
+ Requires-Dist: numpy<2.0,>=1.26.0; python_version >= "3.12"
30
33
  Provides-Extra: all-gpu
31
34
  Requires-Dist: onnxruntime-gpu>=1.15.0; extra == "all-gpu"
32
35
  Requires-Dist: onnxruntime-directml>=1.15.0; extra == "all-gpu"
@@ -50,11 +53,14 @@ Requires-Dist: pycuda>=2022.1; platform_system == "Linux" and extra == "tensorrt
50
53
  [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-red.svg)](https://www.marearts.com/products/anpr)
51
54
  [![Live Demo](https://img.shields.io/badge/demo-live-brightgreen.svg)](http://live.marearts.com)
52
55
 
56
+ [![Python SDK](https://img.shields.io/github/v/release/MareArts/MareArts-ANPR?filter=marearts-anpr-python-sdk-*&label=Python%20SDK&color=blue)](https://pypi.org/project/marearts-anpr/)
57
+ [![iOS App](https://img.shields.io/github/v/release/MareArts/MareArts-ANPR?filter=marearts-anpr-mobile-app-ios-*&label=iOS%20App&color=green)](https://apps.apple.com/app/marearts-anpr/id6753904859)
58
+
53
59
  <div align="center">
54
60
 
55
61
  | ANPR Detection | Road Objects Detection | Mobile App |
56
62
  |:---:|:---:|:---:|
57
- | <img src="promotion_image/anpr_result.png" alt="ANPR Results" width="280"/> | <img src="promotion_image/robj_result.png" alt="Road Objects Results" width="280"/> | <img src="mobile_app/scan_page.png" alt="Mobile App" width="280"/> |
63
+ | <img src="https://raw.githubusercontent.com/MareArts/MareArts-ANPR/main/promotion_image/anpr_result.png" alt="ANPR Results" width="280"/> | <img src="https://raw.githubusercontent.com/MareArts/MareArts-ANPR/main/promotion_image/robj_result.png" alt="Road Objects Results" width="280"/> | <img src="https://raw.githubusercontent.com/MareArts/MareArts-ANPR/main/mobile_app/scan_page.png" alt="Mobile App" width="280"/> |
58
64
 
59
65
  </div>
60
66
 
@@ -80,13 +86,15 @@ Experience the power of MareArts ANPR directly on your mobile device! Fast, accu
80
86
  - ✅ Whitelist/Blacklist management
81
87
  - 🌍 Multi-region support
82
88
 
83
- 📖 **[Read the complete Mobile App Guide →](mobile_app/APP_GUIDE.md)**
89
+ 📖 **[Read the complete Mobile App Guide →](https://github.com/MareArts/MareArts-ANPR/blob/main/mobile_app/APP_GUIDE.md)**
84
90
 
85
91
  > **🎁 Special Offer:** Use the mobile app as your ANPR license - no additional purchase required!
86
92
  > Get your license at [marearts.com/products/anpr](https://www.marearts.com/products/anpr)
87
93
 
88
94
  ---
89
95
 
96
+ <br>
97
+
90
98
  ## Features
91
99
 
92
100
  - 🌍 **Multi-Region Support**: Korean, Europe+, North America, China, and Universal license plates
@@ -96,6 +104,8 @@ Experience the power of MareArts ANPR directly on your mobile device! Fast, accu
96
104
  - 📦 **Batch Processing**: Process multiple plates simultaneously
97
105
  - 🐳 **Production Ready**: Docker API with smart model caching and multi-architecture support
98
106
 
107
+ <br>
108
+
99
109
  ## Quick Start
100
110
 
101
111
  ### Installation
@@ -109,18 +119,19 @@ pip install marearts-anpr[gpu] # NVIDIA CUDA
109
119
  pip install marearts-anpr[directml] # Windows GPU (AMD/Intel/NVIDIA)
110
120
  ```
111
121
 
112
- 📦 [See complete installation guide](docs/installation.md)
122
+ 📦 [See complete installation guide](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/installation.md)
113
123
 
114
124
  ### Basic Usage
115
125
 
116
- 💡 **Model names**: See [models and benchmarks](docs/models.md) (e.g., `small_640p_fp32`, `small_fp32`)
117
126
 
118
127
  ```python
119
128
  from marearts_anpr import ma_anpr_detector_v14, ma_anpr_ocr_v14, marearts_anpr_from_image_file
120
129
 
121
130
  # Initialize detector
122
131
  detector = ma_anpr_detector_v14(
123
- "small_640p_fp32", # pico_640p_fp32, micro_640p_fp32, small_640p_fp32, medium_640p_fp32, large_640p_fp32
132
+ "micro_320p_fp32",
133
+ # 320p models (Fast): pico_320p_fp32/fp16, micro_320p_fp32/fp16, small_320p_fp32/fp16, medium_320p_fp32/fp16, large_320p_fp32/fp16
134
+ # 640p models (High detection): pico_640p_fp32/fp16, micro_640p_fp32/fp16, small_640p_fp32/fp16, medium_640p_fp32/fp16, large_640p_fp32/fp16
124
135
  user_name,
125
136
  serial_key,
126
137
  signature,
@@ -144,6 +155,7 @@ result = marearts_anpr_from_image_file(detector, ocr, "image.jpg")
144
155
  print(result)
145
156
  # Output: {'results': [{'ocr': 'ABC123', 'ocr_conf': 99, ...}], ...}
146
157
  ```
158
+ 💡 🔄 [Learn more about usage](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/usage.md#dynamic-region-switching)
147
159
 
148
160
  #### Dynamic Region Switching
149
161
 
@@ -153,9 +165,11 @@ Switch regions without reinitialization:
153
165
  ocr.set_region('eup') # Europe+
154
166
  ocr.set_region('kr') # Korean
155
167
  ocr.set_region('na') # North America
168
+ ocr.set_region('cn') # China
169
+ ocr.set_region('univ') # Universal (all regions)
156
170
  ```
157
171
 
158
- 🔄 [Learn more about dynamic region switching](docs/usage.md#dynamic-region-switching-370)
172
+ 🔄 [Learn more about dynamic region switching](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/usage.md#dynamic-region-switching)
159
173
 
160
174
  #### Multiple Input Formats & CLI
161
175
 
@@ -177,35 +191,45 @@ ma-anpr test-api image.jpg # Test API (1000/day limit)
177
191
  ma-anpr validate # Validate license
178
192
  ```
179
193
 
180
- 🔧 [See complete usage examples and CLI reference](docs/usage.md)
194
+ 🔧 [See complete usage examples and CLI reference](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/usage.md)
195
+
196
+ <br>
181
197
 
182
198
  ## Model Performance
183
199
 
184
200
  ### Detector Performance
185
201
 
186
- | Model Name | F1 Score | Speed CUDA | Speed CPU | Notes |
187
- |-------|----------|------------|-----------|-------|
188
- | pico_640p_fp32 | 93.08% | 68.7 FPS (14.5ms) | - | Fastest, smallest model |
189
- | micro_640p_fp32 | 93.39% | 69.5 FPS (14.4ms) | - | Fast with good accuracy |
190
- | small_640p_fp32 | 92.58% | 69.5 FPS (14.4ms) | - | Balanced performance |
191
- | medium_640p_fp32 | 92.27% | 62.1 FPS (16.1ms) | - | Higher accuracy |
192
- | large_640p_fp32 | 93.77% | 57.4 FPS (17.4ms) | - | 🎯 Highest F1 score |
202
+ | Model Name | Detection Rate | Speed (GPU) | Notes |
203
+ |------------|----------------|-------------|-------|
204
+ | **micro_320p_fp32** | **97.13%** | **128 FPS** (7.8ms) | 🏆 Best overall |
205
+ | **micro_320p_fp16** | **97.13%** | **56 FPS** (17.9ms) | 🏆 Best mobile (50% smaller) |
206
+ | micro_640p_fp32 | 98.99% | 68 FPS (14.6ms) | Highest detection |
207
+ | small_320p_fp32 | 98.00% | 142 FPS (7.0ms) | Fastest |
208
+ | medium_320p_fp32 | 98.06% | 136 FPS (7.4ms) | High detection |
209
+ | pico_320p_fp32 | 96.02% | 129 FPS (7.8ms) | Smallest + fast |
210
+ | pico_640p_fp32 | 98.54% | 66 FPS (15.2ms) | Balanced |
211
+
212
+ **Note:** 320p models are 2× faster than 640p. FP16 models are 50% smaller with same detection rate.
213
+
214
+ <br>
193
215
 
194
216
  ### OCR Performance
195
217
 
196
218
  *Average across all regions*
197
219
 
198
- | Model Name | Exact Match | Char Accuracy | Speed CUDA | Notes |
199
- |-------|-------------|---------------|------------|-------|
200
- | pico_fp32 | 91.78% | 96.65% | 270 FPS (3.7ms) | Fastest, smallest |
220
+ | Model Name | Exact Match | Character Accuracy | Speed (GPU) | Notes |
221
+ |------------|-------------|-------------------|-------------|-------|
222
+ | **large_fp32** | **91.70%** | **96.27%** | 262 FPS (3.8ms) | 🎯 Best accuracy |
201
223
  | micro_fp32 | 91.86% | 96.50% | 262 FPS (3.8ms) | Fast with good accuracy |
224
+ | pico_fp32 | 91.78% | 96.65% | 270 FPS (3.7ms) | Fastest, smallest |
202
225
  | small_fp32 | 91.54% | 96.64% | 300 FPS (3.3ms) | ⚡ Fastest inference |
203
226
  | medium_fp32 | 90.36% | 96.45% | 270 FPS (3.7ms) | Balanced performance |
204
- | **large_fp32** | **91.70%** | **96.27%** | 262 FPS (3.8ms) | 🎯 Best accuracy |
205
227
 
206
228
  **Supported Regions**: Korean (`kr`), Europe+ (`eup`), North America (`na`), China (`cn`), Universal (`univ`)
207
229
 
208
- 📊 [See detailed benchmarks by region](docs/models.md)
230
+ 📊 [See all models and benchmarks](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/models.md)
231
+
232
+ <br>
209
233
 
210
234
  ## Regional Support
211
235
 
@@ -213,36 +237,42 @@ MareArts ANPR supports license plates from multiple regions with specialized voc
213
237
 
214
238
  - 🇰🇷 **Korean (`kr`)** - Korean license plates with Hangul characters (best accuracy: 99.27%)
215
239
  - 🇪🇺 **Europe+ (`eup`)** - EU countries + Albania, Andorra, Bosnia & Herzegovina, Indonesia, and more
216
- - 🇺🇸 **North America (`na`)** - USA and Canada license plates
240
+ - 🇺🇸🇨🇦🇲🇽 **North America (`na`)** - USA, Canada, and Mexico license plates
217
241
  - 🇨🇳 **China (`cn`)** - Chinese license plates with province codes
218
242
  - 🌍 **Universal (`univ`)** - All regions (default, but choose specific region for best accuracy)
219
243
 
220
244
  💡 **Dynamic Region Switching**: Use `ocr.set_region('kr')` to switch regions instantly without reloading the model, saving ~180 MB per additional region.
221
245
 
222
- 🌍 [See complete regional support and character sets](docs/regional-support.md)
246
+ 🌍 [See complete regional support and character sets](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/regional-support.md)
247
+
248
+ <br>
223
249
 
224
250
  ## Documentation
225
251
 
226
- - 📦 [Installation Guide](docs/installation.md) - Detailed installation options and requirements
227
- - 🔧 [Usage Examples](docs/usage.md) - Python SDK, CLI usage, dynamic region switching, and environment variables
228
- - 💻 [Example Code](example_code/) - Basic, advanced, and batch processing examples
229
- - 🚀 [Model Versions](docs/models.md) - Available models, benchmarks, and performance metrics
230
- - 🌍 [Regional Support](docs/regional-support.md) - Supported countries and character sets
231
- - 🐳 [Docker Deployment](docs/docker.md) - Container setup, API server, and multi-architecture builds
232
- - 🧪 [Try ANPR](docs/api-testing.md) - Test our ANPR without license (1000 requests/day)
233
- - ❓ [FAQ](docs/faq.md) - Licensing, regions, features, and troubleshooting
252
+ - 📦 [Installation Guide](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/installation.md) - Detailed installation options and requirements
253
+ - 🔧 [Usage Examples](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/usage.md) - Python SDK, CLI usage, dynamic region switching, and environment variables
254
+ - 💻 [Example Code](https://github.com/MareArts/MareArts-ANPR/tree/main/example_code) - Basic, advanced, and batch processing examples
255
+ - 🚀 [Model Versions](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/models.md) - Available models, benchmarks, and performance metrics
256
+ - 🌍 [Regional Support](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/regional-support.md) - Supported countries and character sets
257
+ - 🐳 [Docker Deployment](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/docker.md) - Container setup, API server, and multi-architecture builds
258
+ - 🧪 [Try ANPR](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/api-testing.md) - Test our ANPR without license (1000 requests/day)
259
+ - ❓ [FAQ](https://github.com/MareArts/MareArts-ANPR/blob/main/docs/faq.md) - Licensing, regions, features, and troubleshooting
260
+
261
+ <br>
234
262
 
235
263
  ## MareArts Ecosystem
236
264
 
237
265
  Explore our AI toolkit:
238
266
 
239
267
  - **marearts-anpr** - Automatic Number Plate Recognition ([GitHub](https://github.com/MareArts/MareArts-ANPR))
240
- - **🎉 marearts-anpr Mobile App** - ANPR on iOS & Android ([App Store](https://apps.apple.com/us/app/marearts-anpr/id6753904859) | [Guide](mobile_app/APP_GUIDE.md))
268
+ - **🎉 marearts-anpr Mobile App** - ANPR on iOS & Android ([App Store](https://apps.apple.com/us/app/marearts-anpr/id6753904859) | [Guide](https://github.com/MareArts/MareArts-ANPR/blob/main/mobile_app/APP_GUIDE.md))
241
269
  - **marearts-road-objects** - Road object detection for persons, vehicles, and 2-wheelers ([GitHub](https://github.com/MareArts/MareArts-Road-Objects))
242
270
  - **marearts-xcolor** - Color extraction and similarity analysis ([GitHub](https://github.com/MareArts/MareArts-Xcolor))
243
271
  - **marearts-mast** - Real-time panoramic stitching ([GitHub](https://github.com/MareArts/MareArts-MAST))
244
272
  - **marearts-crystal** - Encryption and decryption toolkit ([PyPI](https://pypi.org/project/marearts-crystal/))
245
273
 
274
+ <br>
275
+
246
276
  ## Support & Resources
247
277
 
248
278
  | Resource | Link |
@@ -253,8 +283,18 @@ Explore our AI toolkit:
253
283
  | 🎮 **Live Demo** | [http://live.marearts.com](http://live.marearts.com) |
254
284
  | 📺 **Video Examples** | [YouTube Playlist](https://www.youtube.com/playlist?list=PLvX6vpRszMkxJBJf4EjQ5VCnmkjfE59-J) |
255
285
 
286
+ <br>
287
+
256
288
  ## License
257
289
 
258
290
  © 2024 MareArts. All rights reserved.
259
291
 
260
292
  This software requires a valid license key. Visit [MareArts ANPR Solution](https://www.marearts.com/products/anpr) for licensing options.
293
+
294
+ ---
295
+
296
+ <div align="center">
297
+
298
+ <a href='https://clustrmaps.com/site/1c8t6' title='Visit tracker'><img src='https://clustrmaps.com/map_v2.png?cl=080808&w=600&t=t&d=I-__iZrXFcHfzEXPbD_E0f9ipSE8cNnANPUFRBu-c2Q&co=ffffff&ct=808080' alt='Visitor Map' width='300'/></a>
299
+
300
+ </div>
@@ -0,0 +1,20 @@
1
+ marearts_anpr/__init__.py,sha256=IfB9ne8Csj1bvIYBKpOqQjpRZEYg_JdjljMexlvm2D4,874
2
+ marearts_anpr/_version.py,sha256=zGNGpkQjSytGALD5hcAdD8jzB1hkyGf8rY7GMtr8uwA,75
3
+ marearts_anpr/cli.py,sha256=w3N7htYKn4Ki4kCEGdNNd4ENsPCY71QN6XviATUKjd0,41696
4
+ marearts_anpr/image_processor.cp312-win_amd64.pyd,sha256=jdtH357MDt1lNph8Uq1jqU1-T8_Vd1IH4WYRvOq2lZU,96256
5
+ marearts_anpr/license.cp312-win_amd64.pyd,sha256=fVpeZUP5DJo2wepjZ1_UhHXwhaNPHtSz1Ztm3Zt5V8Q,85504
6
+ marearts_anpr/marearts_anpr.py,sha256=W7sCBQBwvWTNrInzNKhazfZKqmfLv-DGQoQzHvbTytQ,3413
7
+ marearts_anpr/marearts_anpr_d.cp312-win_amd64.pyd,sha256=wTqE0n1LJlNOyBOs4ShtG0Jwj1qAOfoPtiUVdAjmUlk,127488
8
+ marearts_anpr/marearts_anpr_d_v14.cp312-win_amd64.pyd,sha256=_RBefzwY2_efcd0PYvBOMUkbAGRa7ejJCPgz9mWDvqw,135680
9
+ marearts_anpr/marearts_anpr_p.cp312-win_amd64.pyd,sha256=IqGcRyAjU8QU7szBb8J4m9GKQQg0GhMx9p3UGFEXtmk,135168
10
+ marearts_anpr/marearts_anpr_r.cp312-win_amd64.pyd,sha256=aoAl9vdP5HAST0DVhioz3BeG-ZUE66Qe55L7x81SUsw,135168
11
+ marearts_anpr/marearts_anpr_r_v14.cp312-win_amd64.pyd,sha256=kT-6sm4Qh6Vnozr4uEguHIEcgAOEbZkW9eRHnyAC_4U,96256
12
+ marearts_anpr/secret.cp312-win_amd64.pyd,sha256=XNRxlhc6u6PpAUibEPhtMIjW4F6Z8pPvZeUEdrnUoeU,97792
13
+ marearts_anpr/tokenizer.cp312-win_amd64.pyd,sha256=69J7gjJvORIb0_QCQN8xh2BGc3IbQktH_eS9-l2Mizw,92672
14
+ marearts_anpr/utils.cp312-win_amd64.pyd,sha256=fTa3aYMa4G_0Y3dw1xhvkJn7bEUJKdSBP1IivIBtq1s,123904
15
+ marearts_anpr-3.7.6.dist-info/LICENSE,sha256=ZjBcmYn-rXj387Se0nYjKR6lO4leUj6fy-lUx2m5QXE,1738
16
+ marearts_anpr-3.7.6.dist-info/METADATA,sha256=BWxnyHa8_dTdpliSrY-116cj03qqj4Dd5zrZ-zHSx8g,14008
17
+ marearts_anpr-3.7.6.dist-info/WHEEL,sha256=21maRvJOhoVWeyDe4AOt-IWij-ZKDQxU7Q5CjGvl0u0,102
18
+ marearts_anpr-3.7.6.dist-info/entry_points.txt,sha256=4_q2PbsRTMUIMxt7BWxZdt9yuw-4bepqGyZl4jBLgfU,90
19
+ marearts_anpr-3.7.6.dist-info/top_level.txt,sha256=DX3y7nst7V7YBYS7dHQIIZxROhrheWGRsl2aCOLErEA,14
20
+ marearts_anpr-3.7.6.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- marearts_anpr/__init__.py,sha256=IfB9ne8Csj1bvIYBKpOqQjpRZEYg_JdjljMexlvm2D4,874
2
- marearts_anpr/_version.py,sha256=5tP65Hw7ZPtJrPnVib19duCPPG5ipbcnjBQD9ehxFi8,75
3
- marearts_anpr/cli.py,sha256=Udw5VQ37xfAENUrOgIeH1p-40Pg6Cv8vFO9ghqMYaeU,39104
4
- marearts_anpr/image_processor.cp312-win_amd64.pyd,sha256=JVrTxl98cGj9na45noT8xF-7vjO4YW8EDOgRbG5gZuo,96256
5
- marearts_anpr/license.cp312-win_amd64.pyd,sha256=2gJFHbaNl1LaVQS2_bOPjeVIknNC2PH0Do55_io6FL8,85504
6
- marearts_anpr/marearts_anpr.py,sha256=W7sCBQBwvWTNrInzNKhazfZKqmfLv-DGQoQzHvbTytQ,3413
7
- marearts_anpr/marearts_anpr_d.cp312-win_amd64.pyd,sha256=j7oQEiqJy-5IfQY-QoOPxu9CCDE2QeUT5cvEx_xmuaI,127488
8
- marearts_anpr/marearts_anpr_d_v14.cp312-win_amd64.pyd,sha256=bwhcNn-jVDGnG7_JlH_dZnToJv1P4mU5qmxZ_jQkyfU,135680
9
- marearts_anpr/marearts_anpr_p.cp312-win_amd64.pyd,sha256=6Rv8u9eKlZFOT7e9b_PXyx_9omqkR-vOxQYrVliluJA,135168
10
- marearts_anpr/marearts_anpr_r.cp312-win_amd64.pyd,sha256=DDZva2Gayzyq5Sz6CWMzNMl9dZkcymI_SFY_gLjdxN8,135168
11
- marearts_anpr/marearts_anpr_r_v14.cp312-win_amd64.pyd,sha256=Q4jL2Du-cls6XCb6WKHKhmhp3BdeVfKD1bFbwybStmY,96256
12
- marearts_anpr/secret.cp312-win_amd64.pyd,sha256=U5QI5EJ35BXrkGFlX7GGHJPSatSWJnPdeLOAl9kTpzI,97792
13
- marearts_anpr/tokenizer.cp312-win_amd64.pyd,sha256=fQFzixQprSsezi8O9jEuQst5GwA_6XASj2QeYBaYaEw,92672
14
- marearts_anpr/utils.cp312-win_amd64.pyd,sha256=LL05TNMtBQFHzVviMNEdjk89mIr5rxaJqDVBdt72UFg,123904
15
- marearts_anpr-3.7.2.dist-info/LICENSE,sha256=ZjBcmYn-rXj387Se0nYjKR6lO4leUj6fy-lUx2m5QXE,1738
16
- marearts_anpr-3.7.2.dist-info/METADATA,sha256=bSN5uJWqinIV9mF42RZ5BIjuaTsQlHbobPBHZZoAiwk,11556
17
- marearts_anpr-3.7.2.dist-info/WHEEL,sha256=21maRvJOhoVWeyDe4AOt-IWij-ZKDQxU7Q5CjGvl0u0,102
18
- marearts_anpr-3.7.2.dist-info/entry_points.txt,sha256=4_q2PbsRTMUIMxt7BWxZdt9yuw-4bepqGyZl4jBLgfU,90
19
- marearts_anpr-3.7.2.dist-info/top_level.txt,sha256=DX3y7nst7V7YBYS7dHQIIZxROhrheWGRsl2aCOLErEA,14
20
- marearts_anpr-3.7.2.dist-info/RECORD,,