Click here to Skip to main content
15,922,166 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (93 votes)
27 May 202416 min read 4.5M   555.7K   278   7.1K
Version 2.6.5. Our fast, free, self-hosted Artificial Intelligence Server for any platform, any language
CodeProject.AI Server is a locally installed, self-hosted, fast, free and Open Source Artificial Intelligence server for any platform, any language. No off-device or out of network data transfer, no messing around with dependencies, and able to be used from any platform, any language. Runs as a Windows Service or a Docker container.

Image 1

Previous

Quick Links

CodeProject.AI Server: An Artificial Intelligence Server

For those who want to integrate AI functionality into their applications without writing the AI functionality or dealing with the insanely painful task of ensuring everything is setup correctly. CodeProject.AI Server manages your MLOps for you.

Think of CodeProject.AI Server like a database server: you install it, it runs in the background, and provides AI operations for any application via a simple API. The AI operations are handled by drop-in modules that can be easily created using any language, any stack, as long as that stack runs on the host machine. Python, .NET, node - whatever works for you.

CodeProject.AI server runs as a Windows service, under systemd in Linux, or on startup on macOS. Alternatively there are multiple Docker images for x64, arm64 and CUDA enabled systems. Any language that can make HTTP calls can access the service, and the server does not require an external internet connection. Your data stays in your network.

Image 2 Image 3 Image 4 Image 5 Image 6 Image 7 Image 8 Image 9 Image 10
Windows macOS macOS-arm64 Ubuntu Debian Raspberry Pi Orange Pi Jetson Nano Docker

What Does It Do?

Image 11

The CodeProject.AI Server's Dashboard

Currently CodeProject.AI Server contains AI modules that provide:

  • Object Detection (Python and .NET versions that use YOLO, plus a Tensorflow-Lite module that's ultra-lightweight and great for Raspberry Pi and Coral USB sticks
  • Face Detection and recognition
  • Text processing such as sentiment analysis and summarization
  • Image processing such as background removal, background blur, cartoon-isation and resolution enhancement
  • Model training, including dataset acquisition, for YOLO object detection

How Do I Use It?

Install the server and start making calls to the API. It's that easy.

Guides, Help, FAQs

CodeProject.AI Server Home Assistant Blue Iris

Image 12

The CodeProject.AI Server's Explorer in action

Why We Built CodeProject.AI Server

  • AI programming is something every single developer should be aware of

    We wanted a fun project we could use to help teach developers and get them involved in AI. We'll be using CodeProject.AI Server as a focus for articles and exploration to make it fun and painless to learn AI programming.

    We want your contributions!

  • AI coding examples have too many moving parts

    You need to install packages and languages and extensions to tools, and then updates and libraries (but version X, not version Y) and then you have to configure paths and...Oh, you want to run on Windows not Linux? In that case, you need to... It's all too hard. There was much yelling at CodeProject.

    CodeProject.AI Server includes everything you need in a single installer. CodeProject.AI Server also provides an installation script that will setup your dev environment and get you debugging within a couple of clicks.

  • AI solutions often require the use of cloud services

    If you trust the cloud provider, or understand the billing structure, or can be assured you aren't sending sensitive data or won't go over the free tier, this is fine. If you have a webcam inside your house, or can't work out how much AWS will charge, it's not so OK.

    CodeProject.AI Server can be installed locally. Your machine, your network, no data needs to leave your device.

1: Running and Playing With the Features

  1. Install and Run
    1. For a Windows Service, download the latest version, install, and launch the shortcut to the server's dashboard on your desktop or open a browser to http://localhost:32168.

      If you wish to take advantage of a CUDA enabled NVIDIA GPU, please ensure you have the CUDA drivers installed before you install CodeProject.AI. We recommend CUDA 11.8 if running Windows

    2. For a Docker Container for 64 Bit Linux, run:
      docker run -p 32168:32168 --name CodeProject.AI -d codeproject/ai-server

      For Docker GPU (supports NVIDIA CUDA), please use:

      docker run --gpus all -p 32168:32168 --name CodeProject.AI -d codeproject/ai-server:cuda11_7
  2. On the dashboard, at the top, is a link to the demo playground. Open that and play!

2: Running and Debugging the Code

  1. Clone the CodeProject CodeProject.AI Server repository.
  2. Make sure you have Visual Studio Code or Visual Studio 2019+ installed.
  3. Run the setup script in /src
  4. Debug the front-end server application (see notes below, but it's easy).

3. Using CodeProject.AI Server in My Application

Here's an example of using the API for scene detection using a simple JavaScript call:

HTML
<html>
<body>
Detect the scene in this file: <input id="image" type="file" />
<input type="button" value="Detect Scene" onclick="detectScene(image)" />

<script>
function detectScene(fileChooser) {
    var formData = new FormData();
    formData.append('image', fileChooser.files[0]);

    fetch('http://localhost:5000/v1/vision/detect/scene', {
        method: "POST",
        body: formData
    })
    .then(response => {
        if (response.ok) response.json().then(data => {
            console.log(`Scene is ${data.label}, ${data.confidence} confidence`)
        });
    });
}
</script>
</body>
</html>

You can include the CodeProject.AI Server installer (or just a link to the latest version of the installer) in your own apps and installers and voila, you have an AI enabled app.

See the API documentation for a complete rundown of functionality.

Notes on the installers

The native installers (Windows, Ubuntu and macOS) all install the server as a service. On Windows it's a Windows service, on Ubuntu it uses systemd, and on macOS it's simply a login item so will start each time you login.

For all platforms, open http://localhost:32168 to view the dashboard.

To uninstall, please take note of the instructions when you install. For reference:

  • Windows uses the standard Windows installer, so use the Control Panel / Apps and Features applet to manage the installation.
     
  • Ubuntu uses dpkg, so to uninstall simply call
    Bash
    sudo dpkg -r codeproject.ai-server
  • macOS uninstall is via the command line
    Shell
    sudo bash "/Library/CodeProject.AI Server/<version>/uninstall.sh"

Notes on CUDA and Nvidia Support

If you have a CUDA enabled Nvidia card, please then ensure you

  1. install the CUDA Drivers (We recommend CUDA 11.7 or CUDA 11.8 if running Windows)
  2. Install CUDA Toolkit 11.8.
  3. Download and run our cuDNN install script to install cuDNN 8.9.4.

Nvidia downloads and drivers are challenging! Please ensure you download a driver that is compatible with CUDA 11.7+, which generally means the CUDA driver version 516.94 or below. Version 522.x or above may not work. You may need to refer to the release notes for each driver to confirm.

Our Docker images are based on CUDA 11.7 (for legacy reasons) and 12.2. As long as you have a driver installed that can handle 11.7 or 12.2 then the docker image will interface with your drivers and work fine.

CUDA 12.2 brings a few challenges with code that uses PyTorch due to the move to Torch 2.0, so we tend to favour 11.7. Some older cards will not be compatible with CUDA 12, or even CUDA 11.7. If you are struggling with older cards that don't support CUDA 11.7 then post a comment and we'll try and help.

Since we are using CUDA 11.7+ (which has support for compute capability 3.7 and above), we can only support Nvidia CUDA cards that are equal to or better than a GK210 or Tesla K80 card. Please refer to this table of supported cards to determine if your card has compute capability 3.7 or above.

Newer cards such as the GTX 10xx, 20xx and 30xx series, RTX, MX series are fully supported.

AI is a memory intensive operation. Some cards with 2GB RAM or less may struggle in some situations. Using the dashboard, you can either disable modules you don't need, or disable GPU support entirely for one or more modules. This will free up memory and help get you back on track.

What Does It Include?

CodeProject.AI Server includes:

  • A HTTP REST API Server. The server listens for requests from other apps, passes them to the backend analysis services for processing, and then passes the results back to the caller. It runs as a simple self-contained web service on your device.
  • Backend Analysis services. The brains of the operation is in the analysis services sitting behind the front end API. All processing of data is done on the current machine. No calls to the cloud and no data leaving the device.
  • The source code, naturally.

CodeProject.AI Server can currently

  • Detect objects in images
  • Detect faces in images
  • Detect the type of scene represented in an image
  • Recognise faces that have been registered with the service
  • Perform detection on custom models

The development environment also provides modules that can

  • Remove a background from an image
  • Blur a background from an image
  • Enhance the resolution of an image
  • Pull out the most important sentences in text to generate a text summary
  • Prove sentiment analysis on text

We will be constantly expanding the feature list.

Our Goals

  • To promote AI development and inspire the AI developer community to dive in and have a go. Artificial Intelligence is a huge paradigm change in the industry and all developers owe it to themselves to experiment in and familiarize themselves with the technology. CodeProject.AI Server was built as a learning tool, a demonstration, and a library and service that can be used out of the box.
  • To make AI development easy. It's not that AI development is that hard. It's that there are so, so many options. Our architecture is designed to allow any AI implementation to find a home in our system, and for our service to be callable from any language.
  • To focus on core use-cases. We're deliberately not a solution for everyone. Instead, we're a solution for common day-to-day needs. We will be adding dozens of modules and scores of AI capabilities to our system, but our goal is always clarity and simplicity over a 100% solution.
  • To tap the expertise of the Developer Community. We're not experts but we know a developer or two out there who are. The true power of CodeProject.AI Server comes from the contributions and improvements from our AI community.

License

CodeProject.AI Server is licensed under the Server-Side Public License.

Release Notes

What's New - 2.6

  • You can now select, at install time, which modules you wish to have initially installed
  • Some modules (Coral, Yolov8) now allow you to download individual models at runtime via the dashboard.
  • A new generative AI module (Llama LLM Chatbot)
  • A standardised way to handle (in code) modules that run long processes such as generative AI
  • Debian support has been improved
  • Small UI improvements to the dashboard
  • Some simplification of the modulesettings files
  • The inclusion, in the source code, of template .NET and Python modules (both simple and long process demos)
  • Improvements to the Coral and ALPR modules (thanks to Seth and Mike)
  • Docker CUDA 12.2 image now includes cuDNN
  • Install script fixes
  • Added Object Segmentation to the YOLOv8 module
  • 2.6.5 Various installer fixes

Previous Versions

Release 2.5

  • Dynamic Explorer UI: Each module now supplies its own UI for the explorer
  • Improved dashboard and explorer
    • The module listing now shows module version history if you click the version number
    • Explorer benchmark has been updated to use the custom models of the currently active object detection module
    • The Info button on the dashboard now includes a status data dump from the module. For things like object detectors, it will include a dictionary of labels / counts so you can see what's being detected. For longer running modules such as training it will include the training status. This is here to enable better UI features in the future
  • Updated module settings schema that includes module author and original project acknowledgement
  • Installer fixes
  • Improved Jetson support
  • Lots of bug fixes, but specifically there was a script issue affecting module installs, and a modulesettings.json issue affecting the YOLOv5 6.2 module, as well as the SuperResolution module.
  • Updated ALPR, OCR (PP-OCR4 support thanks to Mike Lud) and Coral Object Detection (multi-TPU support thanks to Seth Price) modules
  • Pre-installed modules in Docker can now be uninstalled / reinstalled
  • A new Sound Classifier module has been included
  • 2.5.4: A separate status update from each module that decouples the stats for a module. This just cleans things up a little on the backend
  • 2.5.4: Minor modulesettings.json schema update, which introduces the concept of model requirements.
  • 2.5.5: Support for long running processes with accompanying stable difussion module.

Release 2.4

  • Mesh support Automatically offload inference work to other servers on your network based on inference speed. Zero config, and dashboard support to enable/disable.
  • CUDA detection fixed
  • Module self-test performed on installation
  • YOLOv8 module added
  • YOLOv5 .NET module fixes for GPU, and YOLOv5 3.1 GPU support fixed
  • Python package and .NET installation issues fixed
  • Better prompts for admin-only installs
  • More logging output to help diagnose issues
  • VC Redist hash error fixed
  • General bug fixes.
  • Breaking: modulesettings.json schema changed

Release 2.3

  • A focus on improving the installation of modules at runtime. More error checks, faster re-install, better reporting, and manual fallbacks in situations where admin rights are needed
  • A revamped SDK that removes much (or all, in some cases) of the boilerplate code needed in install scripts
  • Fine grained support for different CUDA versions as well as systems such as Raspberry Pi, Orange Pi and Jetson
  • Support for CUDA 12.2
  • GPU support for PaddlePaddle (OCR and license plate readers benefit)
  • CUDA 12.2 Docker image
  • Lots of bug fixes in install scripts
  • UI tweaks
  • 2.3.4 ALPR now using GPU in Windows
  • 2.3.4 Corrections to Linux/macOS installers

Release 2.2.0

This release is still in testing and is focussed mainly on the installation process

  • An entirely new Windows installer offering more installation options and a smoother upgrade experience from here on.
  • New macOS and Ubuntu native installers, for x64 and arm64 (including Raspberry Pi)
  • A new installation SDK for making module installers far easier
  • Improved installation feedback and self-checks
  • Coral.AI support for Linux, macOS (version 11 and 12 only) and Windows
  • Updates:
    • 2.2.1 - 2.2.3 various installer fixes
    • 2.2.4 - Fix to remove chunking in order to allow HTTP1.1 access to the API (Blue Iris fix)

Release 2.1.x Beta

  • Improved Raspberry Pi support. A new, fast object detection module with support for the Coral.AI TPU, all within an Arm64 Docker image
  • All modules can now be installed / uninstalled (rather than having some modules fixed and uninstallable).
  • Installer is streamlined: Only the server is installed at installation time, and on first run, we install Object Detection (Python and .NET) and Face Processing (which can be uninstalled).
  • Reworking of the Python module SDK. Modules are new child classes, not aggregators of our module runner.
  • Reworking of the modulesettings file to make it simpler and have less replication
  • Improved logging: quantity, quality, filtering and better information
  • Addition of two modules: ObjectDetectionTFLite for Object Detection on Raspberry Pi using Coral, and Cartoonise for some fun
  • Improvements to half-precision support checks on CUDA cards
  • Modules are now versioned and our module registry will now only show modules that fit your current server version.
  • Various bug fixes
  • Shared Python runtimes now in /runtimes.
  • All modules moved from the /AnalysisLayer folder to the /modules folder
  • Tested on CUDA 12
     
  • Patch 2.1.11: YOLO training modulke now allows you to use your own dataset. YOLO 6.2 / Face Processing reverted back to Torch 1.13.
  • Patch 2.1.10: Added YOLOv5 training module and support. Improved system info. Orange Pi and NVIDIA Jetson support. Added Triggers. Renamed VersionCompatibililty to ModuleReleases. Becoz speling.
  • Patch 2.1.9: Increased and adjustable module install timeout and improved install logs. Fixes around resource contention in PyTorch, Fixes to resource usage reporting, improved Native Linux/WSL CUDA setup. Async fixes. Improvements to half-precision support.
  • Patch 2.1.8: Reduced, drastically, the load on the system while getting CPU/GPU usage updates.
  • Patch 2.1.7: Fixed a memory / resource leak that may have been causing server shutdowns
  • Patch 2.1.6 and below: Installer fixes

Please see our CUDA Notes for information on setting up, and restrictions around, Nvidia cards and CUDA support.

If you are upgrading: when the dashboard launches, it might be necessary to force-reload (Ctrl+R on Windows) the dashboard to ensure you are viewing the latest version.

Release 2.0.x Beta

  • 2.0.8: Improved analysis process management. Stamp out those errant memory hogging Python processes!
  • 2.0.7: Improved logging, both file based and in the dashboard, module installer/uninstaller bug fixes
  • 2.0.6: Corrected issues with downloadable modules installer
  • Our new Module Registry: download and install modules at runtime via the dashboard
  • Improved performance for the Object Detection modules
  • Optional YOLO 3.1 Object Detection module for older GPUs
  • Optimised RAM use
  • Support for Raspberry Pi 4+. Code and run natively directly on the Raspberry Pi using VSCode natively
  • Revamped dashboard
  • New timing reporting for each API call
  • New, simplified setup and install scripts

Release 1.6.x Beta

  • Optimised RAM use
  • Ability to enable / disable modules and GPU support via the dashboard
  • REST settings API for updating settings on the fly
  • Apple M1/M2 GPU support
  • Workarounds for some Nvidia cards
  • Async processes and logging for a performance boost
  • Breaking: The CustomObjectDetection is now part of ObjectDetectionYolo
  • Performance fix for CPU + video demo
  • Patch 1.6.7: potential memory leak addressed
  • Patch 1.6.8: image handling improvements on Linux, multi-thread ONNX on .NET

Release 1.5.6.2 Beta

  • Docker nVidia GPU support
  • Further performance improvements
  • cuDNN install script to help with nVidia driver and toolkit installation
  • Bug fixes

Release 1.5.6 Beta

  • nVidia GPU support for Windows
  • Perf improvements to Python modules
  • Work on the Python SDK to make creating modules easier
  • Dev installers now drastically simplified for those creating new modules
  • Added SuperResolution as a demo module

Release 1.5 Beta

  • Support for custom models

Release 1.3.x Beta

  • Refactored and improved setup and module addition system
  • Introduction of modulesettings.json files
  • New analysis modules

Release 1.2.x Beta

  • Support for Apple Silicon for development mode
  • Native Windows installer
  • Runs as Windows Service
  • Run in a Docker Container
  • Installs and builds using VSCode in Linux (Ubuntu), macOS and Windows, as well as Visual Studio on Windows
  • General optimisation of the download payload sizes

Previous

  • We started with a proof of concept on Windows 10+ only. Installs we via a simple BAT script, and the code is full of exciting sharp edges. A simple dashboard and playground are included. Analysis is currently Python code only.
  • Version checks are enabled to alert users to new versions.
  • A new .NET implementation scene detection using the YOLO model to ensure the codebase is platform and tech stack agnostic
  • Blue Iris integration completed.

Written By
Software Developer CodeProject Solutions
Canada Canada
The CodeProject team have been writing software, building communities, and hosting CodeProject.com for over 20 years. We are passionate about helping developers share knowledge, learn new skills, and connect. We believe everyone can code, and every contribution, no matter how small, helps.

The CodeProject team is currently focussing on CodeProject.AI Server, a stand-alone, self-hosted server that provides AI inferencing services on any platform for any language. Learn AI by jumping in the deep end with us: codeproject.com/AI.
This is a Organisation

4 members

Comments and Discussions

 
GeneralRe: Training Module Error in creating dataset Pin
Sean Ewington25-Sep-23 7:02
staffSean Ewington25-Sep-23 7:02 
AnswerRe: Training Module Error in creating dataset Pin
Member 1574485518-Sep-23 16:21
Member 1574485518-Sep-23 16:21 
QuestionYOLO Training Module will not initialize in GPU mode Pin
Member 1574485518-Sep-23 12:20
Member 1574485518-Sep-23 12:20 
AnswerRe: YOLO Training Module will not initialize in GPU mode Pin
Sean Ewington18-Sep-23 12:30
staffSean Ewington18-Sep-23 12:30 
GeneralRe: YOLO Training Module will not initialize in GPU mode Pin
Member 1574485518-Sep-23 18:43
Member 1574485518-Sep-23 18:43 
GeneralRe: YOLO Training Module will not initialize in GPU mode Pin
Sean Ewington20-Sep-23 10:28
staffSean Ewington20-Sep-23 10:28 
GeneralRe: YOLO Training Module will not initialize in GPU mode Pin
Member 1574485520-Sep-23 21:29
Member 1574485520-Sep-23 21:29 
QuestionUp and Running! on 2.2.4 Pin
cee518-Sep-23 10:47
cee518-Sep-23 10:47 
Yolo562 has never worked for me, including when NET is not active, but 5.NET is working again. The LPR appears to be back. BI still has no idea which version of codeproject is started. It previously indicated this.

Logs regarding Yolo 562:
CodeProject.AI
Docs
Forums
The Code
CodeProject.AI Explorer
Server is Online
2.2.4-Beta
☀️
Your self contained AI server. Learn how to integrate with other programs or add your own AI module. Having problems? See our common solutions or ask a question. Blue Iris users: please read our Wyze cam setup guide and common issues pages.

13:25:49:Operating System: Windows (Microsoft Windows 11 version 10.0.22621)
13:25:49:CPUs:             Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz (Intel)
13:25:49:                  1 CPU x 6 cores. 12 logical processors (x64)
13:25:49:GPU:              NVIDIA GeForce GTX 1060 (6 GiB) (NVIDIA)
13:25:49:                  Driver: 516.01 CUDA: 11.7.64 (max supported: 11.7) Compute: 6.1
13:25:49:System RAM:       32 GiB
13:25:49:Target:           Windows
13:25:49:BuildConfig:      Release
13:25:49:Execution Env:    Native
13:25:49:Runtime Env:      Production
13:25:49:.NET framework:   .NET 7.0.5
13:25:49:App DataDir:      C:\ProgramData\CodeProject\AI
13:25:49:Video adapter info:
13:25:49:  Intel(R) UHD Graphics 630:
13:25:49:    Driver Version     31.0.101.2125
13:25:49:    Video Processor    Intel(R) UHD Graphics Family
13:25:49:  NVIDIA GeForce GTX 1060:
13:25:49:    Driver Version     31.0.15.1601
13:25:49:    Video Processor    NVIDIA GeForce GTX 1060
13:25:49:STARTING CODEPROJECT.AI SERVER
13:25:49:RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
13:25:49:PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
13:25:49:MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
13:25:49:PYTHON_PATH               = \bin\windows\%PYTHON_RUNTIME%\venv\scripts\Python
13:25:49:Data Dir                  = C:\ProgramData\CodeProject\AI
13:25:49:Server version:   2.2.4-Beta
13:25:52:
13:25:52:Module 'License Plate Reader' 2.6 (ID: ALPR)
13:25:52:Module Path:   C:\Program Files\CodeProject\AI\modules\ALPR
13:25:52:AutoStart:     True
13:25:52:Queue:         alpr_queue
13:25:52:Platforms:     windows,linux,macos,macos-arm64
13:25:52:GPU:           Support enabled
13:25:52:Parallelism:   0
13:25:52:Accelerator:
13:25:52:Half Precis.:  enable
13:25:52:Runtime:       python37
13:25:52:Runtime Loc:   Local
13:25:52:FilePath:      ALPR_adapter.py
13:25:52:Pre installed: False
13:25:52:Start pause:   1 sec
13:25:52:LogVerbosity:
13:25:52:Valid:         True
13:25:52:Environment Variables
13:25:52:AUTO_PLATE_ROTATE            = True
13:25:52:OCR_OPTIMAL_CHARACTER_HEIGHT = 60
13:25:52:OCR_OPTIMAL_CHARACTER_WIDTH  = 36
13:25:52:OCR_OPTIMIZATION             = True
13:25:52:PLATE_CONFIDENCE             = 0.7
13:25:52:PLATE_RESCALE_FACTOR         = 2
13:25:52:PLATE_ROTATE_DEG             = 0
13:25:52:
13:25:52:Started License Plate Reader module
13:25:53:
13:25:53:Module 'Background Remover' 1.5 (ID: BackgroundRemover)
13:25:53:Module Path:   C:\Program Files\CodeProject\AI\modules\BackgroundRemover
13:25:53:AutoStart:     True
13:25:53:Queue:         backgroundremover_queue
13:25:53:Platforms:     windows,macos,macos-arm64
13:25:53:GPU:           Support disabled
13:25:53:Parallelism:   1
13:25:53:Accelerator:
13:25:53:Half Precis.:  enable
13:25:53:Runtime:       python39
13:25:53:Runtime Loc:   Local
13:25:53:FilePath:      rembg_adapter.py
13:25:53:Pre installed: False
13:25:53:Start pause:   0 sec
13:25:53:LogVerbosity:
13:25:53:Valid:         True
13:25:53:Environment Variables
13:25:53:U2NET_HOME = %CURRENT_MODULE_PATH%/models
13:25:53:
13:25:53:Started Background Remover module
13:25:53:
13:25:53:Module 'Object Detection (YOLOv5 .NET)' 1.6 (ID: ObjectDetectionNet)
13:25:53:Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionNet
13:25:53:AutoStart:     True
13:25:53:Queue:         objectdetection_queue
13:25:53:Platforms:     windows,linux,linux-arm64,macos,macos-arm64
13:25:53:GPU:           Support enabled
13:25:53:Parallelism:   0
13:25:53:Accelerator:
13:25:53:Half Precis.:  enable
13:25:53:Runtime:       execute
13:25:53:Runtime Loc:   Shared
13:25:53:FilePath:      ObjectDetectionNet.exe
13:25:53:Pre installed: False
13:25:53:Start pause:   1 sec
13:25:53:LogVerbosity:
13:25:53:Valid:         True
13:25:53:Environment Variables
13:25:53:CUSTOM_MODELS_DIR = %CURRENT_MODULE_PATH%\custom-models
13:25:53:MODELS_DIR        = %CURRENT_MODULE_PATH%\assets
13:25:53:MODEL_SIZE        = MEDIUM
13:25:53:
13:25:54:Started Object Detection (YOLOv5 .NET) module
13:25:54:ObjectDetectionNet.exe:       Application started. Press Ctrl+C to shut down.
13:25:54:ObjectDetectionNet.exe:       Hosting environment: Production
13:25:54:ObjectDetectionNet.exe:       Content root path: C:\Program Files\CodeProject\AI\modules\ObjectDetectionNet
13:25:55:Object Detection (YOLOv5 .NET): Object Detection (YOLOv5 .NET) module started.
13:25:57:rembg_adapter.py: Server connection error. Is the server URL correct?
13:26:04:ALPR_adapter.py: Server connection error. Is the server URL correct?
13:26:11:Object Detection (YOLOv5 .NET): Command completed in 8 ms.
13:26:38:Object Detection (YOLOv5 .NET): Command completed in 927 ms.
13:26:38:ALPR_adapter.py: Server connection error. Is the server URL correct?
13:26:38:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:26:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f254e8) took 173ms
13:26:45:Object Detection (YOLOv5 .NET): Command completed in 354 ms.
13:26:45:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:26:45:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9cc0de) took 156ms
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 432 ms.
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 544 ms.
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 497 ms.
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 296 ms.
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 145 ms.
13:26:59:Object Detection (YOLOv5 .NET): Command completed in 125 ms.
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cbda7f) took 444ms
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 104 ms.
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6432c6) took 717ms
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 116 ms.
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d6646a) took 621ms
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 117 ms.
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...400b90) took 743ms
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 109 ms.
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 127 ms.
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 142 ms.
13:27:00:Object Detection (YOLOv5 .NET): Command completed in 141 ms.
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6bc73a) took 704ms
13:27:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...580020) took 741ms
13:27:01:Object Detection (YOLOv5 .NET): Command completed in 112 ms.
13:27:01:Object Detection (YOLOv5 .NET): Command completed in 130 ms.
13:27:01:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a59c20) took 949ms
13:27:01:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7bb0a6) took 1153ms
13:27:04:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:27:04:Object Detection (YOLOv5 .NET): Command completed in 91 ms.
13:27:04:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3abe92) took 200ms
13:27:11:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:27:11:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:27:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...638f4c) took 149ms
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:27:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e9fe6a) took 224ms
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 134 ms.
13:27:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7f56e9) took 256ms
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 124 ms.
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 123 ms.
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 115 ms.
13:27:12:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...25e763) took 339ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 108 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...088614) took 266ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 99 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...07b012) took 210ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 101 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6594a4) took 204ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5611da) took 168ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:27:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...df5330) took 207ms
13:27:13:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:27:14:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:27:14:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f2c1f4) took 175ms
13:27:14:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:27:14:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0472a7) took 189ms
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 108 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 121 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 158 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 138 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 154 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 169 ms.
13:27:17:Object Detection (YOLOv5 .NET): Command completed in 171 ms.
13:27:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8a3d0c) took 575ms
13:27:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cd15d6) took 687ms
13:27:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...283e15) took 463ms
13:27:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5903ef) took 354ms
13:27:18:Object Detection (YOLOv5 .NET): Command completed in 111 ms.
13:27:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a78790) took 257ms
13:27:31:Object Detection (YOLOv5 .NET): Command completed in 663 ms.
13:27:31:Object Detection (YOLOv5 .NET): Command completed in 189 ms.
13:27:31:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cac915) took 328ms
13:27:50:Object Detection (YOLOv5 .NET): Command completed in 312 ms.
13:27:50:Object Detection (YOLOv5 .NET): Command completed in 138 ms.
13:27:50:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f42e01) took 222ms
13:28:21:Object Detection (YOLOv5 .NET): Command completed in 303 ms.
13:28:21:Object Detection (YOLOv5 .NET): Command completed in 321 ms.
13:28:21:Object Detection (YOLOv5 .NET): Command completed in 192 ms.
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 123 ms.
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 142 ms.
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...c69e3b) took 528ms
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...2becac) took 432ms
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 146 ms.
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f872ae) took 260ms
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 183 ms.
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...72a75e) took 386ms
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...285e38) took 220ms
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 111 ms.
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 109 ms.
13:28:22:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f85de8) took 194ms
13:28:22:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:28:23:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:28:23:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4442ec) took 181ms
13:28:23:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:28:23:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:28:23:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cb402b) took 169ms
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 398 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 397 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 371 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 162 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 103 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 131 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 142 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 162 ms.
13:28:48:Object Detection (YOLOv5 .NET): Command completed in 183 ms.
13:28:49:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...01ef49) took 660ms
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b93c84) took 571ms
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...bade7b) took 358ms
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a617a6) took 469ms
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...601625) took 608ms
13:28:49:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...2c6048) took 305ms
13:28:49:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:28:49:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d02b33) took 202ms
13:28:49:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:28:49:Object Detection (YOLOv5 .NET): Command completed in 107 ms.
13:28:50:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:28:50:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...acb67b) took 260ms
13:28:50:Object Detection (YOLOv5 .NET): Command completed in 103 ms.
13:28:50:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4464e5) took 201ms
13:28:50:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:28:50:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:28:50:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8492ad) took 187ms
13:29:00:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:29:00:Object Detection (YOLOv5 .NET): Command completed in 78 ms.
13:29:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e26338) took 175ms
13:29:00:Object Detection (YOLOv5 .NET): Command completed in 96 ms.
13:29:10:Object Detection (YOLOv5 .NET): Command completed in 62 ms.
13:29:10:Object Detection (YOLOv5 .NET): Command completed in 62 ms.
13:29:10:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cb6c32) took 157ms
13:29:15:Object Detection (YOLOv5 .NET): Command completed in 66 ms.
13:29:15:Object Detection (YOLOv5 .NET): Command completed in 87 ms.
13:29:16:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:29:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8c8afd) took 147ms
13:29:16:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:29:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f11862) took 223ms
13:29:16:Object Detection (YOLOv5 .NET): Command completed in 67 ms.
13:29:16:Object Detection (YOLOv5 .NET): Command completed in 66 ms.
13:29:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a14343) took 187ms
13:29:23:Object Detection (YOLOv5 .NET): Command completed in 127 ms.
13:29:23:Object Detection (YOLOv5 .NET): Command completed in 154 ms.
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 146 ms.
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 110 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...200bd3) took 496ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 121 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7754e0) took 412ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 130 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...348a55) took 416ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 139 ms.
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 143 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f8d8f4) took 291ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 99 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...74453b) took 255ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:29:24:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fe6737) took 216ms
13:29:24:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:29:25:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:29:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b33d54) took 180ms
13:29:25:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:29:25:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:29:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...634524) took 186ms
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 733 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 876 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 877 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 743 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 468 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 266 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 186 ms.
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 100 ms.
13:29:37:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b5c2e7) took 361ms
13:29:37:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 112 ms.
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e7c373) took 456ms
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 142 ms.
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 141 ms.
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 135 ms.
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 159 ms.
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 158 ms.
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...062db5) took 688ms
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e5e757) took 380ms
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...be0f22) took 377ms
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7b5e10) took 661ms
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...34e911) took 466ms
13:29:38:Object Detection (YOLOv5 .NET): Command completed in 100 ms.
13:29:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cf1f95) took 204ms
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 116 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 109 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 122 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 137 ms.
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 126 ms.
13:29:42:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0949d8) took 361ms
13:29:42:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5a1953) took 427ms
13:29:42:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6fc2d1) took 525ms
13:29:42:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...835575) took 272ms
13:29:42:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:29:43:Object Detection (YOLOv5 .NET): Command completed in 108 ms.
13:29:43:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fbc167) took 224ms
13:29:43:Object Detection (YOLOv5 .NET): Command completed in 75 ms.
13:29:43:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...06c0e0) took 161ms
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 744 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 866 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 816 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 677 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 455 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 197 ms.
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 184 ms.
13:29:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...04f093) took 381ms
13:29:57:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 130 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 164 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 161 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 172 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 190 ms.
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 198 ms.
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3bff64) took 519ms
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...747951) took 836ms
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9de130) took 711ms
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8c8030) took 764ms
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4b8f0b) took 761ms
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...601116) took 511ms
13:29:58:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:29:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e2c6a6) took 309ms
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 72 ms.
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:30:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9d4915) took 216ms
13:30:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...00fb4c) took 293ms
13:30:00:Object Detection (YOLOv5 .NET): Command completed in 75 ms.
13:30:00:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a20712) took 156ms
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 295 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 308 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 171 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 103 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 107 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 121 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 131 ms.
13:31:54:Object Detection (YOLOv5 .NET): Command completed in 146 ms.
13:31:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...153f4e) took 402ms
13:31:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...864086) took 407ms
13:31:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1345fd) took 499ms
13:31:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...eb2a4d) took 266ms
13:31:55:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:31:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7648ac) took 198ms
13:31:55:Object Detection (YOLOv5 .NET): Command completed in 99 ms.
13:31:55:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:31:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...196b37) took 181ms
13:31:55:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:31:55:Object Detection (YOLOv5 .NET): Command completed in 73 ms.
13:31:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3549f6) took 152ms
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 98 ms.
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:31:56:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e21bf4) took 385ms
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 103 ms.
13:31:56:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d1b1ed) took 335ms
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 114 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7ceb10) took 325ms
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9a0900) took 242ms
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...c37305) took 179ms
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b6bf98) took 195ms
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:31:57:Object Detection (YOLOv5 .NET): Command completed in 75 ms.
13:31:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b6f22b) took 222ms
13:31:59:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:31:59:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:31:59:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b09da0) took 182ms
13:32:18:Object Detection (YOLOv5 .NET): Command completed in 377 ms.
13:32:19:Object Detection (YOLOv5 .NET): Command completed in 136 ms.
13:32:19:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...28f483) took 222ms
13:32:37:Object Detection (YOLOv5 .NET): Command completed in 307 ms.
13:32:38:Object Detection (YOLOv5 .NET): Command completed in 120 ms.
13:32:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...bb65bb) took 223ms
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 1306 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 1422 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 1379 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 150 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 935 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 746 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 354 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 1285 ms.
13:32:56:Object Detection (YOLOv5 .NET): Command completed in 161 ms.
13:32:56:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...06720e) took 361ms
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 122 ms.
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 123 ms.
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 135 ms.
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 146 ms.
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 160 ms.
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 157 ms.
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...075f9f) took 677ms
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fdfc56) took 553ms
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...c0d4b2) took 555ms
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5866b7) took 436ms
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fa72a1) took 370ms
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...422c74) took 689ms
13:32:57:Object Detection (YOLOv5 .NET): Command completed in 74 ms.
13:32:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1b343e) took 220ms
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:32:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4966af) took 223ms
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:32:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d1410e) took 179ms
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:32:58:Object Detection (YOLOv5 .NET): Command completed in 69 ms.
13:32:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5e09c9) took 155ms
13:34:54:Object Detection (YOLOv5 .NET): Command completed in 290 ms.
13:34:54:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:34:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f48ffe) took 132ms
13:34:58:Object Detection (YOLOv5 .NET): Command completed in 67 ms.
13:34:58:Object Detection (YOLOv5 .NET): Command completed in 67 ms.
13:34:58:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4b82a7) took 138ms
13:35:15:Object Detection (YOLOv5 .NET): Command completed in 376 ms.
13:35:15:Object Detection (YOLOv5 .NET): Command completed in 457 ms.
13:35:15:Object Detection (YOLOv5 .NET): Command completed in 477 ms.
13:35:15:Object Detection (YOLOv5 .NET): Command completed in 250 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 111 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...22344d) took 345ms
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 115 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 119 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 136 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 152 ms.
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...010a44) took 428ms
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...834f47) took 525ms
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...eeced2) took 431ms
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 171 ms.
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1b84c3) took 294ms
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 101 ms.
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...53489b) took 267ms
13:35:16:Object Detection (YOLOv5 .NET): Command completed in 68 ms.
13:35:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fb96db) took 152ms
13:35:17:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:35:17:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:35:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...aed796) took 167ms
13:35:17:Object Detection (YOLOv5 .NET): Command completed in 96 ms.
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 91 ms.
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:35:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...491de6) took 280ms
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 115 ms.
13:35:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...472a5c) took 219ms
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 78 ms.
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 91 ms.
13:35:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...82eafe) took 286ms
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 69 ms.
13:35:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...aa3e9e) took 166ms
13:35:18:Object Detection (YOLOv5 .NET): Command completed in 74 ms.
13:35:19:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:35:19:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d5312f) took 188ms
13:35:19:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:35:19:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:35:19:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f66074) took 167ms
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 76 ms.
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:35:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...37a729) took 270ms
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:35:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4b3ad5) took 205ms
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 75 ms.
13:35:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cf404f) took 198ms
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 101 ms.
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:35:25:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...c679af) took 186ms
13:35:25:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:35:26:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...415439) took 149ms
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 68 ms.
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:35:26:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4347e3) took 196ms
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 87 ms.
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:35:26:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fc8be3) took 210ms
13:35:26:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:35:26:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3c983c) took 147ms
13:35:36:Object Detection (YOLOv5 .NET): Command completed in 66 ms.
13:35:36:Object Detection (YOLOv5 .NET): Command completed in 67 ms.
13:35:36:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5c2222) took 159ms
13:35:55:Object Detection (YOLOv5 .NET): Command completed in 69 ms.
13:35:55:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:35:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d95b40) took 140ms
13:36:27:Object Detection (YOLOv5 .NET): Command completed in 349 ms.
13:36:27:Object Detection (YOLOv5 .NET): Command completed in 437 ms.
13:36:27:Object Detection (YOLOv5 .NET): Command completed in 312 ms.
13:36:27:Object Detection (YOLOv5 .NET): Command completed in 130 ms.
13:36:27:Object Detection (YOLOv5 .NET): Command completed in 80 ms.
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...08e75f) took 470ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a393cc) took 479ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cf8fa1) took 411ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 133 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1ca3b2) took 331ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 140 ms.
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 154 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...ca1b5a) took 275ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d2ade8) took 168ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 73 ms.
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:36:28:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a58596) took 192ms
13:36:28:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:36:29:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:36:29:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...086572) took 175ms
13:36:31:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:36:31:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:36:31:Object Detection (YOLOv5 .NET): Command completed in 114 ms.
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5d03b1) took 464ms
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 110 ms.
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6c2f15) took 377ms
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 126 ms.
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f2d8d3) took 473ms
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8327db) took 316ms
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 80 ms.
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7eee0c) took 187ms
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:36:32:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...86034b) took 196ms
13:36:32:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:36:33:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:36:33:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...29386e) took 182ms
13:36:33:Object Detection (YOLOv5 .NET): Command completed in 78 ms.
13:36:33:Object Detection (YOLOv5 .NET): Command completed in 78 ms.
13:36:33:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9fdb0c) took 162ms
13:36:34:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:36:34:Object Detection (YOLOv5 .NET): Command completed in 112 ms.
13:36:34:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:36:34:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 87 ms.
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 122 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...926144) took 660ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 120 ms.
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 132 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cae703) took 301ms
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...50a43b) took 574ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 151 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0f286d) took 597ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 166 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...483bc1) took 604ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7ff9b6) took 242ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:36:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d52e13) took 194ms
13:36:35:Object Detection (YOLOv5 .NET): Command completed in 76 ms.
13:36:36:Object Detection (YOLOv5 .NET): Command completed in 76 ms.
13:36:36:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...fb1b0f) took 158ms
13:36:37:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:36:37:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:36:37:Object Detection (YOLOv5 .NET): Command completed in 119 ms.
13:36:37:Object Detection (YOLOv5 .NET): Command completed in 124 ms.
13:36:37:Object Detection (YOLOv5 .NET): Command completed in 98 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 96 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 114 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 117 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 128 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 143 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 158 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 91 ms.
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...02a3b9) took 364ms
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...af9ac4) took 607ms
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...ef947c) took 710ms
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...01b3a9) took 604ms
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a5618a) took 648ms
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...511493) took 385ms
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 96 ms.
13:36:38:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...aa0af0) took 232ms
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:36:38:Object Detection (YOLOv5 .NET): Command completed in 108 ms.
13:36:39:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:36:39:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...47e077) took 165ms
13:36:39:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:36:39:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d173b1) took 257ms
13:36:39:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:36:39:Object Detection (YOLOv5 .NET): Command completed in 72 ms.
13:36:39:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...ebf3f5) took 218ms
13:37:18:Object Detection (YOLOv5 .NET): Command completed in 380 ms.
13:37:18:Object Detection (YOLOv5 .NET): Command completed in 206 ms.
13:37:18:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4bf8c9) took 280ms
13:38:07:Object Detection (YOLOv5 .NET): Command completed in 214 ms.
13:38:07:Object Detection (YOLOv5 .NET): Command completed in 119 ms.
13:38:07:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a6be3c) took 183ms
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 150 ms.
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 214 ms.
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:38:11:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9d36ce) took 260ms
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:38:11:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e8d2cf) took 193ms
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 116 ms.
13:38:11:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...c7e99d) took 367ms
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 99 ms.
13:38:11:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...7e4e86) took 208ms
13:38:11:Object Detection (YOLOv5 .NET): Command completed in 96 ms.
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 104 ms.
13:38:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0b9c37) took 206ms
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:38:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...61c8e4) took 250ms
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 88 ms.
13:38:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0038dc) took 183ms
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:38:12:Object Detection (YOLOv5 .NET): Command completed in 74 ms.
13:38:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...ab5177) took 159ms
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 85 ms.
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 93 ms.
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 114 ms.
13:38:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a36a95) took 230ms
13:38:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...bd18e2) took 316ms
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 97 ms.
13:38:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...072b96) took 217ms
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 98 ms.
13:38:13:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:38:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...926168) took 187ms
13:38:14:Object Detection (YOLOv5 .NET): Command completed in 79 ms.
13:38:14:Object Detection (YOLOv5 .NET): Command completed in 68 ms.
13:38:14:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...51b30f) took 146ms
13:38:15:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 103 ms.
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:38:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9ed3a4) took 275ms
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 113 ms.
13:38:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1db21f) took 360ms
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 128 ms.
13:38:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...824eae) took 218ms
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 95 ms.
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 92 ms.
13:38:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e4a308) took 239ms
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 70 ms.
13:38:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d6bcec) took 152ms
13:38:16:Object Detection (YOLOv5 .NET): Command completed in 76 ms.
13:38:17:Object Detection (YOLOv5 .NET): Command completed in 66 ms.
13:38:17:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:38:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9d3f85) took 187ms
13:38:17:Object Detection (YOLOv5 .NET): Command completed in 84 ms.
13:38:17:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...38c229) took 163ms
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 94 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 112 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 100 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 108 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 107 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 118 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 116 ms.
13:38:20:Object Detection (YOLOv5 .NET): Command completed in 133 ms.
13:38:20:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...ce4afa) took 533ms
13:38:20:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e9fd9d) took 434ms
13:38:20:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...70c08c) took 431ms
13:38:20:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0eab3b) took 265ms
13:38:21:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:38:21:Object Detection (YOLOv5 .NET): Command completed in 81 ms.
13:38:21:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9a5fa7) took 201ms
13:38:21:Object Detection (YOLOv5 .NET): Command completed in 72 ms.
13:38:21:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0db38a) took 153ms
13:38:21:Object Detection (YOLOv5 .NET): Command completed in 76 ms.
13:38:21:Object Detection (YOLOv5 .NET): Command completed in 66 ms.
13:38:21:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...6353fd) took 142ms
13:38:39:Object Detection (YOLOv5 .NET): Command completed in 1245 ms.
13:38:39:Object Detection (YOLOv5 .NET): Command completed in 176 ms.
13:38:39:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e69e29) took 256ms
13:38:57:Object Detection (YOLOv5 .NET): Command completed in 340 ms.
13:38:57:Object Detection (YOLOv5 .NET): Command completed in 125 ms.
13:38:57:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b6f674) took 203ms
13:39:16:Object Detection (YOLOv5 .NET): Command completed in 310 ms.
13:39:16:Object Detection (YOLOv5 .NET): Command completed in 186 ms.
13:39:16:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...747efd) took 262ms
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 825 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 962 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 1088 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 1128 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 1139 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 1167 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 223 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 175 ms.
13:39:32:Object Detection (YOLOv5 .NET): Command completed in 161 ms.
13:39:33:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8b2ed5) took 500ms
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 134 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 134 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 102 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 124 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 131 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 129 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 145 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 129 ms.
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 139 ms.
13:39:33:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...70c56f) took 1001ms
13:39:33:Object Detection (YOLOv5 .NET): Command completed in 91 ms.
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...48652f) took 521ms
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d42007) took 762ms
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...012be5) took 1092ms
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...af0823) took 913ms
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...357a6f) took 781ms
13:39:34:Object Detection (YOLOv5 .NET): Command completed in 104 ms.
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...74e6ce) took 771ms
13:39:34:Object Detection (YOLOv5 .NET): Command completed in 105 ms.
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...5acfe0) took 534ms
13:39:34:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:39:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b87abf) took 616ms
13:39:35:Object Detection (YOLOv5 .NET): Command completed in 158 ms.
13:39:35:Object Detection (YOLOv5 .NET): Command completed in 158 ms.
13:39:35:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b98af7) took 1975ms
13:39:36:Object Detection (YOLOv5 .NET): Command completed in 101 ms.
13:39:36:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...a2dd38) took 1420ms
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 290 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 289 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 263 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 205 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 110 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 82 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 148 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 141 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 138 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 154 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 134 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 171 ms.
13:40:54:Object Detection (YOLOv5 .NET): Command completed in 117 ms.
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...602d6e) took 700ms
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...61ca39) took 445ms
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4c3fdb) took 675ms
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...dbff00) took 356ms
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...1f136c) took 679ms
13:40:54:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...70a17d) took 683ms
13:40:55:Object Detection (YOLOv5 .NET): Command completed in 89 ms.
13:40:55:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3b5986) took 206ms
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 72 ms.
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:40:56:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...10cca6) took 167ms
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 106 ms.
13:40:56:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...981330) took 262ms
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 86 ms.
13:40:56:Object Detection (YOLOv5 .NET): Command completed in 72 ms.
13:40:56:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...f5c44c) took 179ms
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 325 ms.
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 329 ms.
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 74 ms.
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 77 ms.
13:42:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...b8dab6) took 310ms
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 90 ms.
13:42:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...722507) took 253ms
13:42:34:Object Detection (YOLOv5 .NET): Command completed in 98 ms.
13:42:34:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...d48380) took 184ms
13:42:53:Object Detection (YOLOv5 .NET): Command completed in 364 ms.
13:42:53:Object Detection (YOLOv5 .NET): Command completed in 269 ms.
13:42:53:Object Detection (YOLOv5 .NET): Command completed in 195 ms.
13:42:53:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...9975af) took 289ms
13:42:53:Object Detection (YOLOv5 .NET): Command completed in 83 ms.
13:42:53:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...eb03b9) took 160ms
13:43:06:Sending shutdown request to python/BackgroundRemover
13:43:07:rembg_adapter.py: Server connection error. Is the server URL correct?
13:43:08:Module BackgroundRemover has shutdown
13:43:08:rembg_adapter.py: has exited
13:43:13:Object Detection (YOLOv5 .NET): Command completed in 1257 ms.
13:43:14:Object Detection (YOLOv5 .NET): Command completed in 175 ms.
13:43:14:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...4466fa) took 267ms
13:43:32:Object Detection (YOLOv5 .NET): Command completed in 1256 ms.
13:43:33:Object Detection (YOLOv5 .NET): Command completed in 215 ms.
13:43:33:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...0e326d) took 313ms
13:43:39:BackgroundRemover went quietly
13:43:39:
13:43:39:Module 'Background Remover' 1.5 (ID: BackgroundRemover)
13:43:39:Module Path:   C:\Program Files\CodeProject\AI\modules\BackgroundRemover
13:43:39:AutoStart:     True
13:43:39:Queue:         backgroundremover_queue
13:43:39:Platforms:     windows,macos,macos-arm64
13:43:39:GPU:           Support disabled
13:43:39:Parallelism:   1
13:43:39:Accelerator:
13:43:39:Half Precis.:  enable
13:43:39:Runtime:       python39
13:43:39:Runtime Loc:   Local
13:43:39:FilePath:      rembg_adapter.py
13:43:39:Pre installed: False
13:43:39:Start pause:   0 sec
13:43:39:LogVerbosity:
13:43:39:Valid:         True
13:43:39:Environment Variables
13:43:39:U2NET_HOME = %CURRENT_MODULE_PATH%/models
13:43:39:
13:43:39:Started Background Remover module
13:43:50:Object Detection (YOLOv5 .NET): Command completed in 278 ms.
13:43:51:Object Detection (YOLOv5 .NET): Command completed in 137 ms.
13:43:51:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...3c1f1e) took 225ms
13:44:07:Sending shutdown request to ObjectDetectionNet/ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Unable to get request from objectdetection_queue for ObjectDetectionNet
13:44:07:ObjectDetectionNet.exe: Shutdown signal received. Ending loop
13:44:07:ObjectDetectionNet.exe: Shutdown signal received. Ending loop
13:44:07:ObjectDetectionNet.exe: Shutdown signal received. Ending loop
13:44:07:ObjectDetectionNet.exe: Shutdown signal received. Ending loop
13:44:07:ObjectDetectionNet.exe: Shutdown signal received. Ending loop
13:44:40:Forcing shutdown of ObjectDetectionNet/ObjectDetectionNet
13:44:40:Module ObjectDetectionNet has shutdown
13:44:40:ObjectDetectionNet.exe: has exited
13:44:43:
13:44:43:Module 'Object Detection (YOLOv5 6.2)' 1.6.1 (ID: ObjectDetectionYolo)
13:44:43:Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo
13:44:43:AutoStart:     True
13:44:43:Queue:         objectdetection_queue
13:44:43:Platforms:     all
13:44:43:GPU:           Support enabled
13:44:43:Parallelism:   0
13:44:43:Accelerator:
13:44:43:Half Precis.:  enable
13:44:43:Runtime:       python37
13:44:43:Runtime Loc:   Shared
13:44:43:FilePath:      detect_adapter.py
13:44:43:Pre installed: False
13:44:43:Start pause:   1 sec
13:44:43:LogVerbosity:
13:44:43:Valid:         True
13:44:43:Environment Variables
13:44:43:APPDIR             = %CURRENT_MODULE_PATH%
13:44:43:CUSTOM_MODELS_DIR  = %CURRENT_MODULE_PATH%/custom-models
13:44:43:MODELS_DIR         = %CURRENT_MODULE_PATH%/assets
13:44:43:MODEL_SIZE         = Medium
13:44:43:USE_CUDA           = True
13:44:43:YOLOv5_AUTOINSTALL = false
13:44:43:YOLOv5_VERBOSE     = false
13:44:43:
13:44:43:Started Object Detection (YOLOv5 6.2) module
13:44:43:detect_adapter.py: Traceback (most recent call last):
13:44:43:detect_adapter.py:   File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect_adapter.py", line 12, in 
13:44:43:detect_adapter.py:     from request_data import RequestData
13:44:43:detect_adapter.py:   File "../../SDK/Python\request_data.py", line 7, in 
13:44:43:detect_adapter.py:     from PIL import Image
13:44:43:detect_adapter.py: ModuleNotFoundError: No module named 'PIL'
13:44:43:Module ObjectDetectionYolo has shutdown
13:44:43:detect_adapter.py: has exited
13:45:09:
13:45:09:Module 'Object Detection (YOLOv5 .NET)' 1.6 (ID: ObjectDetectionNet)
13:45:09:Module Path:   C:\Program Files\CodeProject\AI\modules\ObjectDetectionNet
13:45:09:AutoStart:     True
13:45:09:Queue:         objectdetection_queue
13:45:09:Platforms:     windows,linux,linux-arm64,macos,macos-arm64
13:45:09:GPU:           Support enabled
13:45:09:Parallelism:   0
13:45:09:Accelerator:
13:45:09:Half Precis.:  enable
13:45:09:Runtime:       execute
13:45:09:Runtime Loc:   Shared
13:45:09:FilePath:      ObjectDetectionNet.exe
13:45:09:Pre installed: False
13:45:09:Start pause:   1 sec
13:45:09:LogVerbosity:
13:45:09:Valid:         True
13:45:09:Environment Variables
13:45:09:CUSTOM_MODELS_DIR = %CURRENT_MODULE_PATH%\custom-models
13:45:09:MODELS_DIR        = %CURRENT_MODULE_PATH%\assets
13:45:09:MODEL_SIZE        = MEDIUM
13:45:09:
13:45:09:Started Object Detection (YOLOv5 .NET) module
13:45:10:ObjectDetectionNet.exe:       Application started. Press Ctrl+C to shut down.
13:45:10:ObjectDetectionNet.exe:       Hosting environment: Production
13:45:10:ObjectDetectionNet.exe:       Content root path: C:\Program Files\CodeProject\AI\modules\ObjectDetectionNet
13:45:11:Object Detection (YOLOv5 .NET): Object Detection (YOLOv5 .NET) module started.
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1283 ms.
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1278 ms.
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...cd3f25) took 9155ms
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...898e91) took 8644ms
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1317 ms.
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...13871c) took 9323ms
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1336 ms.
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1339 ms.
13:45:12:Object Detection (YOLOv5 .NET): Command completed in 1339 ms.
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...638afd) took 1924ms
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...938e5f) took 8957ms
13:45:12:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...e605c7) took 9277ms
13:45:13:Object Detection (YOLOv5 .NET): Command completed in 346 ms.
13:45:13:Object Detection (YOLOv5 .NET): Command completed in 71 ms.
13:45:13:License Plate Reader: Rec'd request for License Plate Reader command 'alpr' (...8030ec) took 189ms
Logging level
Info

AnswerRe: Up and Running! on 2.2.4 Pin
Chris Maunder18-Sep-23 11:31
cofounderChris Maunder18-Sep-23 11:31 
QuestionStart/stop module 2.2.4-beta Pin
DeadpoolW18-Sep-23 10:08
DeadpoolW18-Sep-23 10:08 
AnswerRe: Start/stop module 2.2.4-beta Pin
DeadpoolW18-Sep-23 10:13
DeadpoolW18-Sep-23 10:13 
QuestionMessage Closed Pin
18-Sep-23 8:04
wadejones200818-Sep-23 8:04 
AnswerRe: Motion detection not working Pin
Chris Maunder18-Sep-23 8:41
cofounderChris Maunder18-Sep-23 8:41 
GeneralRe: Motion detection not working Pin
Preston Jones18-Sep-23 8:50
Preston Jones18-Sep-23 8:50 
GeneralRe: Motion detection not working Pin
Chris Maunder18-Sep-23 11:34
cofounderChris Maunder18-Sep-23 11:34 
GeneralRe: Motion detection not working Pin
Preston Jones18-Sep-23 11:55
Preston Jones18-Sep-23 11:55 
GeneralRe: Motion detection not working Pin
Preston Jones18-Sep-23 14:58
Preston Jones18-Sep-23 14:58 
GeneralRe: Motion detection not working Pin
Chris Maunder19-Sep-23 2:42
cofounderChris Maunder19-Sep-23 2:42 
GeneralRe: Motion detection not working Pin
Preston Jones19-Sep-23 11:10
Preston Jones19-Sep-23 11:10 
GeneralRe: Motion detection not working Pin
Wade Jones18-Sep-23 23:38
Wade Jones18-Sep-23 23:38 
NewsBlue Iris issue solved Pin
Chris Maunder18-Sep-23 6:13
cofounderChris Maunder18-Sep-23 6:13 
GeneralRe: Blue Iris issue solved Pin
Steve Winn18-Sep-23 6:44
Steve Winn18-Sep-23 6:44 
GeneralRe: Blue Iris issue solved Pin
Chris Maunder18-Sep-23 7:27
cofounderChris Maunder18-Sep-23 7:27 
GeneralRe: Blue Iris issue solved Pin
Patrick Bohannon18-Sep-23 10:22
Patrick Bohannon18-Sep-23 10:22 
GeneralRe: Blue Iris issue solved Pin
Chris Maunder18-Sep-23 15:52
cofounderChris Maunder18-Sep-23 15:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: Answered

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.