Click here to Skip to main content
15,886,072 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (91 votes)
29 Feb 202416 min read 3.1M   487.1K   269   6.7K
Version 2.6.2. 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

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

 
AnswerRe: CodeProject Restarts Pin
Village Guy16-Feb-23 2:46
Village Guy16-Feb-23 2:46 
GeneralRe: CodeProject Restarts Pin
Chris Maunder17-Feb-23 4:56
cofounderChris Maunder17-Feb-23 4:56 
QuestionConstant requests Pin
Februari14-Feb-23 9:44
Februari14-Feb-23 9:44 
AnswerRe: Constant requests Pin
theoldfool14-Feb-23 11:13
professionaltheoldfool14-Feb-23 11:13 
GeneralRe: Constant requests Pin
Februari14-Feb-23 21:05
Februari14-Feb-23 21:05 
GeneralRe: Constant requests Pin
theoldfool14-Feb-23 23:37
professionaltheoldfool14-Feb-23 23:37 
Question2.0.7 stops working Pin
Member 1577685514-Feb-23 4:58
Member 1577685514-Feb-23 4:58 
Question2.0.7 stops working Pin
Member 1577685514-Feb-23 2:41
Member 1577685514-Feb-23 2:41 
After about 40,000-50,000 images processed, 2.0.7 stops working for me. Blue Iris reports AI error 500. Only module I have running is "Object Detection (YOLOv5 6.2) GPU (CUDA)". Stop and start module and everything works again. Stops working at 03:01:34 in log below.


Operating System: Windows (Microsoft Windows 11 version 10.0.22621)
CPUs:             1 CPU x 10 cores. 20 logical processors (x64)
GPU:              NVIDIA GeForce RTX 2070 SUPER (8 GiB) (NVidia) 
                  Driver: 526.98 CUDA: 12.0 Compute: 7.5
System RAM:       32 GiB
Target:           Windows
BuildConfig:      Release
Execution Env:    Native
Runtime Env:      Production
.NET framework:   .NET 7.0.2
System GPU info:
  GPU 3D Usage       0%
  GPU RAM Usage      3.3 GiB
Video adapter info:
  NVIDIA GeForce RTX 2070 SUPER:
    Adapter RAM        4 GiB
    Driver Version     31.0.15.2698
    Video Processor    NVIDIA GeForce RTX 2070 SUPER
  Intel(R) UHD Graphics 630:
    Adapter RAM        1,024 MiB
    Driver Version     27.20.100.9664
    Video Processor    Intel(R) UHD Graphics Family
Global Environment variables:
  CPAI_APPROOTPATH = C:\Program Files\CodeProject\AI
  CPAI_PORT        = 32168




2023-02-14 03:01:33: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:33: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 9580733a-6b9a-4552-ae59-8929a5cb20d4) took 79ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:33: Response received (#reqid 9580733a-6b9a-4552-ae59-8929a5cb20d4)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 1d6b4581-b9c0-46da-8b02-b2653465019a)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 1d6b4581-b9c0-46da-8b02-b2653465019a)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 41d4c34a-3fad-4620-8460-efe749317d5d)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 41d4c34a-3fad-4620-8460-efe749317d5d)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid a80c1794-28ea-4429-987f-91ad531cd99c)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid a80c1794-28ea-4429-987f-91ad531cd99c)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 56f79cd0-6b3e-4d21-b141-fade7e148846)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid c68583ed-92d4-41dc-8b37-1fecfeb1f8d6)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 56f79cd0-6b3e-4d21-b141-fade7e148846)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid c68583ed-92d4-41dc-8b37-1fecfeb1f8d6)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid f7652e75-95fb-46d1-86ea-63424e7da224)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid f7652e75-95fb-46d1-86ea-63424e7da224)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 6f2d7a14-abe2-41ba-916d-70594784ba9d)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 6f2d7a14-abe2-41ba-916d-70594784ba9d)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 40f5d044-edd3-4468-aaf7-aa89ac446159)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 40f5d044-edd3-4468-aaf7-aa89ac446159)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 0f445392-2ce3-4760-8a78-7cf30afe9593)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 0f445392-2ce3-4760-8a78-7cf30afe9593)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid 8e118377-c579-4f1c-985e-6c90b6b87d77)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid 8e118377-c579-4f1c-985e-6c90b6b87d77)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Client request 'detect' in the queue (#reqid f98d3861-4f05-4745-be67-312633ee0ff1)
2023-02-14 03:01:34: Request 'detect' dequeued for processing (#reqid f98d3861-4f05-4745-be67-312633ee0ff1)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 1d6b4581-b9c0-46da-8b02-b2653465019a)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2):  [Exception] : Traceback (most recent call last): in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 1d6b4581-b9c0-46da-8b02-b2653465019a) took 568ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 56f79cd0-6b3e-4d21-b141-fade7e148846) took 481ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 56f79cd0-6b3e-4d21-b141-fade7e148846)
2023-02-14 03:01:34: Response received (#reqid f7652e75-95fb-46d1-86ea-63424e7da224)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f7652e75-95fb-46d1-86ea-63424e7da224) took 483ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid a80c1794-28ea-4429-987f-91ad531cd99c)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid a80c1794-28ea-4429-987f-91ad531cd99c) took 509ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid c68583ed-92d4-41dc-8b37-1fecfeb1f8d6)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid c68583ed-92d4-41dc-8b37-1fecfeb1f8d6) took 514ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 41d4c34a-3fad-4620-8460-efe749317d5d)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 41d4c34a-3fad-4620-8460-efe749317d5d) took 585ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 6f2d7a14-abe2-41ba-916d-70594784ba9d)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 6f2d7a14-abe2-41ba-916d-70594784ba9d) took 526ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 40f5d044-edd3-4468-aaf7-aa89ac446159) took 425ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 40f5d044-edd3-4468-aaf7-aa89ac446159)
2023-02-14 03:01:34: Response received (#reqid 0f445392-2ce3-4760-8a78-7cf30afe9593)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 0f445392-2ce3-4760-8a78-7cf30afe9593) took 420ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 8e118377-c579-4f1c-985e-6c90b6b87d77) took 417ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid 8e118377-c579-4f1c-985e-6c90b6b87d77)
2023-02-14 03:01:34: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f98d3861-4f05-4745-be67-312633ee0ff1) took 278ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:34: Response received (#reqid f98d3861-4f05-4745-be67-312633ee0ff1)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid 786ac4f1-d5c6-44fd-bc1c-99a83969bb74)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid 786ac4f1-d5c6-44fd-bc1c-99a83969bb74)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 786ac4f1-d5c6-44fd-bc1c-99a83969bb74) took 97ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Response received (#reqid 786ac4f1-d5c6-44fd-bc1c-99a83969bb74)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid 3c7a1093-e1f1-4461-ac7a-12b0bdf374d5)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid 3c7a1093-e1f1-4461-ac7a-12b0bdf374d5)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid 34e3be3a-d023-4dac-91a9-86313a3a6d66)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid 34e3be3a-d023-4dac-91a9-86313a3a6d66)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid f1e87e21-2192-40c3-864d-f14762ed8e67)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid f1e87e21-2192-40c3-864d-f14762ed8e67)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 3c7a1093-e1f1-4461-ac7a-12b0bdf374d5) took 87ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Response received (#reqid 3c7a1093-e1f1-4461-ac7a-12b0bdf374d5)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f1e87e21-2192-40c3-864d-f14762ed8e67) took 124ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Response received (#reqid f1e87e21-2192-40c3-864d-f14762ed8e67)
2023-02-14 03:01:35: Response received (#reqid 34e3be3a-d023-4dac-91a9-86313a3a6d66)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 34e3be3a-d023-4dac-91a9-86313a3a6d66) took 118ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid d8fec60b-5ba7-4ce9-a7b3-09e89e990133)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid d8fec60b-5ba7-4ce9-a7b3-09e89e990133)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid d8fec60b-5ba7-4ce9-a7b3-09e89e990133) took 61ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Response received (#reqid d8fec60b-5ba7-4ce9-a7b3-09e89e990133)
2023-02-14 03:01:35: Client request 'detect' in the queue (#reqid 49cdcbb8-b738-43f3-9a95-48ac6552afaa)
2023-02-14 03:01:35: Request 'detect' dequeued for processing (#reqid 49cdcbb8-b738-43f3-9a95-48ac6552afaa)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 49cdcbb8-b738-43f3-9a95-48ac6552afaa) took 91ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:35: Response received (#reqid 49cdcbb8-b738-43f3-9a95-48ac6552afaa)
2023-02-14 03:01:36: Request 'detect' dequeued for processing (#reqid 285b7ddc-b060-4d48-acce-cf4246e9bfd5)
2023-02-14 03:01:36: Client request 'detect' in the queue (#reqid 285b7ddc-b060-4d48-acce-cf4246e9bfd5)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Request 'detect' dequeued for processing (#reqid dc17156a-3437-4adc-8bf9-c84b9fc86485)
2023-02-14 03:01:36: Client request 'detect' in the queue (#reqid dc17156a-3437-4adc-8bf9-c84b9fc86485)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 285b7ddc-b060-4d48-acce-cf4246e9bfd5) took 75ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Response received (#reqid 285b7ddc-b060-4d48-acce-cf4246e9bfd5)
2023-02-14 03:01:36: Request 'detect' dequeued for processing (#reqid a759d749-2e1c-4bb8-b6b7-4be102eb4861)
2023-02-14 03:01:36: Client request 'detect' in the queue (#reqid a759d749-2e1c-4bb8-b6b7-4be102eb4861)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid dc17156a-3437-4adc-8bf9-c84b9fc86485) took 113ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Response received (#reqid dc17156a-3437-4adc-8bf9-c84b9fc86485)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid a759d749-2e1c-4bb8-b6b7-4be102eb4861) took 105ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Response received (#reqid a759d749-2e1c-4bb8-b6b7-4be102eb4861)
2023-02-14 03:01:36: Client request 'detect' in the queue (#reqid b9ff90d8-9c17-47fd-8e0d-00cc7075853d)
2023-02-14 03:01:36: Request 'detect' dequeued for processing (#reqid b9ff90d8-9c17-47fd-8e0d-00cc7075853d)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid b9ff90d8-9c17-47fd-8e0d-00cc7075853d) took 87ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Response received (#reqid b9ff90d8-9c17-47fd-8e0d-00cc7075853d)
2023-02-14 03:01:36: Client request 'detect' in the queue (#reqid f5d5e044-a4ee-4774-966b-77309fbfde2e)
2023-02-14 03:01:36: Request 'detect' dequeued for processing (#reqid f5d5e044-a4ee-4774-966b-77309fbfde2e)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f5d5e044-a4ee-4774-966b-77309fbfde2e) took 57ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:36: Response received (#reqid f5d5e044-a4ee-4774-966b-77309fbfde2e)
2023-02-14 03:01:37: Request 'detect' dequeued for processing (#reqid aa91774d-733f-4798-9eb8-8f779cac77f0)
2023-02-14 03:01:37: Client request 'detect' in the queue (#reqid aa91774d-733f-4798-9eb8-8f779cac77f0)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Request 'detect' dequeued for processing (#reqid f923e08a-47c5-48e2-aa59-fea39b20869c)
2023-02-14 03:01:37: Client request 'detect' in the queue (#reqid f923e08a-47c5-48e2-aa59-fea39b20869c)
2023-02-14 03:01:37: Request 'detect' dequeued for processing (#reqid f3eee904-18de-45f5-ba10-8c08e479cdd7)
2023-02-14 03:01:37: Client request 'detect' in the queue (#reqid f3eee904-18de-45f5-ba10-8c08e479cdd7)
2023-02-14 03:01:37: Request 'detect' dequeued for processing (#reqid 3587a114-2939-43ea-a213-0f26fc5bdc21)
2023-02-14 03:01:37: Client request 'detect' in the queue (#reqid 3587a114-2939-43ea-a213-0f26fc5bdc21)
2023-02-14 03:01:37: Response received (#reqid aa91774d-733f-4798-9eb8-8f779cac77f0)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid aa91774d-733f-4798-9eb8-8f779cac77f0) took 97ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 3587a114-2939-43ea-a213-0f26fc5bdc21) took 258ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Response received (#reqid 3587a114-2939-43ea-a213-0f26fc5bdc21)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f923e08a-47c5-48e2-aa59-fea39b20869c) took 280ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Response received (#reqid f923e08a-47c5-48e2-aa59-fea39b20869c)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid f3eee904-18de-45f5-ba10-8c08e479cdd7) took 277ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Response received (#reqid f3eee904-18de-45f5-ba10-8c08e479cdd7)
2023-02-14 03:01:37: Request 'detect' dequeued for processing (#reqid 57b3e711-2cb6-4a35-8f8a-4cc2b6f6c012)
2023-02-14 03:01:37: Client request 'detect' in the queue (#reqid 57b3e711-2cb6-4a35-8f8a-4cc2b6f6c012)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 57b3e711-2cb6-4a35-8f8a-4cc2b6f6c012) took 57ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:37: Response received (#reqid 57b3e711-2cb6-4a35-8f8a-4cc2b6f6c012)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 2ab2138c-4764-4337-99f7-97333fb9ee52)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 2ab2138c-4764-4337-99f7-97333fb9ee52)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 2ab2138c-4764-4337-99f7-97333fb9ee52) took 95ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Response received (#reqid 2ab2138c-4764-4337-99f7-97333fb9ee52)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 05ed0d5d-e1f8-4739-80fc-8ba1a8aa3f1a)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 05ed0d5d-e1f8-4739-80fc-8ba1a8aa3f1a)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 20418594-5a78-4478-98bc-35e05f2f51c4)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 20418594-5a78-4478-98bc-35e05f2f51c4)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 1055f12f-7a5e-4fe2-a183-f840b7bb3340)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 1055f12f-7a5e-4fe2-a183-f840b7bb3340)
2023-02-14 03:01:38: Response received (#reqid 05ed0d5d-e1f8-4739-80fc-8ba1a8aa3f1a)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 05ed0d5d-e1f8-4739-80fc-8ba1a8aa3f1a) took 89ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 20418594-5a78-4478-98bc-35e05f2f51c4) took 149ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Response received (#reqid 20418594-5a78-4478-98bc-35e05f2f51c4)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 1055f12f-7a5e-4fe2-a183-f840b7bb3340) took 130ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Response received (#reqid 1055f12f-7a5e-4fe2-a183-f840b7bb3340)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 44032116-4181-48f1-b3dc-7b937563c87f)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 44032116-4181-48f1-b3dc-7b937563c87f)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 44032116-4181-48f1-b3dc-7b937563c87f) took 74ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Response received (#reqid 44032116-4181-48f1-b3dc-7b937563c87f)
2023-02-14 03:01:38: Request 'detect' dequeued for processing (#reqid 8edd9a79-ca01-4611-a6e4-17c13572fae2)
2023-02-14 03:01:38: Client request 'detect' in the queue (#reqid 8edd9a79-ca01-4611-a6e4-17c13572fae2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 8edd9a79-ca01-4611-a6e4-17c13572fae2) took 100ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:38: Response received (#reqid 8edd9a79-ca01-4611-a6e4-17c13572fae2)
2023-02-14 03:01:39: Request 'detect' dequeued for processing (#reqid c98fb679-4750-4062-839c-c522b299cafc)
2023-02-14 03:01:39: Client request 'detect' in the queue (#reqid c98fb679-4750-4062-839c-c522b299cafc)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Client request 'detect' in the queue (#reqid 3aa915af-112f-40e2-8ee8-29740f094f01)
2023-02-14 03:01:39: Request 'detect' dequeued for processing (#reqid 3aa915af-112f-40e2-8ee8-29740f094f01)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid c98fb679-4750-4062-839c-c522b299cafc) took 85ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Response received (#reqid c98fb679-4750-4062-839c-c522b299cafc)
2023-02-14 03:01:39: Request 'detect' dequeued for processing (#reqid 0faeebde-52ab-413f-8525-7e7ee6aa093e)
2023-02-14 03:01:39: Client request 'detect' in the queue (#reqid 0faeebde-52ab-413f-8525-7e7ee6aa093e)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 3aa915af-112f-40e2-8ee8-29740f094f01) took 112ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Response received (#reqid 3aa915af-112f-40e2-8ee8-29740f094f01)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 0faeebde-52ab-413f-8525-7e7ee6aa093e) took 121ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Response received (#reqid 0faeebde-52ab-413f-8525-7e7ee6aa093e)
2023-02-14 03:01:39: Client request 'detect' in the queue (#reqid 901a8f4e-5b89-4171-acaf-bd8659af45ca)
2023-02-14 03:01:39: Request 'detect' dequeued for processing (#reqid 901a8f4e-5b89-4171-acaf-bd8659af45ca)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 901a8f4e-5b89-4171-acaf-bd8659af45ca) took 108ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Response received (#reqid 901a8f4e-5b89-4171-acaf-bd8659af45ca)
2023-02-14 03:01:39: Request 'detect' dequeued for processing (#reqid 15c944ef-dd03-40cc-b980-ea22aae237ec)
2023-02-14 03:01:39: Client request 'detect' in the queue (#reqid 15c944ef-dd03-40cc-b980-ea22aae237ec)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Object Detection (YOLOv5 6.2): Queue and Processing Object Detection (YOLOv5 6.2) command 'detect' (#reqid 15c944ef-dd03-40cc-b980-ea22aae237ec) took 83ms (command timing) in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:39: Response received (#reqid 15c944ef-dd03-40cc-b980-ea22aae237ec)
2023-02-14 03:01:40: Client request 'detect' in the queue (#reqid d4a972e2-0681-44d8-9076-9b7a1b317453)
2023-02-14 03:01:40: Request 'detect' dequeued for processing (#reqid d4a972e2-0681-44d8-9076-9b7a1b317453)
2023-02-14 03:01:40: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:40: Client request 'detect' in the queue (#reqid 108d2524-c684-457b-95aa-edc2dc4b8a7b)
2023-02-14 03:01:40: Request 'detect' dequeued for processing (#reqid 108d2524-c684-457b-95aa-edc2dc4b8a7b)
2023-02-14 03:01:40: Object Detection (YOLOv5 6.2): Retrieved objectdetection_queue command in Object Detection (YOLOv5 6.2)
2023-02-14 03:01:40: Request 'detect' dequeued for processing (#reqid f5e66d47-af07-49e4-89de-788713601847)
2023-02-14 03:01:40: Client request 'detect' in the queue (#reqid f5e66d47-af07-49e4-89de-788713601847)
2023-02-14 03:01:40: Client request 'detect' in the queue (#reqid 384ddad0-d976-4f79-940e-ff03eb3e18c6)
2023-02-14 03:01:40: Request 'detect' dequeued for processing (#reqid 384ddad0-d976-4f79-940e-ff03eb3e18c6)
2023-02-14 03:01:40: Response received (#reqid d4a972e2-0681-44d8-9076-9b7a1b317453)

QuestionAIs and Automation. Pin
Curtis Underwood14-Feb-23 2:01
Curtis Underwood14-Feb-23 2:01 
AnswerRe: AIs and Automation. Pin
Chris Maunder17-Feb-23 5:01
cofounderChris Maunder17-Feb-23 5:01 
QuestionLatest windows 11 pro AI 2.07 Continuous crashing Pin
Member 1567250313-Feb-23 9:26
Member 1567250313-Feb-23 9:26 
QuestionLive performance vs review performance - 3-10x the time Pin
Chris C 202312-Feb-23 1:49
Chris C 202312-Feb-23 1:49 
AnswerRe: Live performance vs review performance - 3-10x the time Pin
coolspot1812-Feb-23 6:21
coolspot1812-Feb-23 6:21 
QuestionDual gpu pc, how to select which gpu C.P.A.I. uses? Pin
Chris Unser10-Feb-23 19:43
Chris Unser10-Feb-23 19:43 
AnswerRe: Dual gpu pc, how to select which gpu C.P.A.I. uses? Pin
Chris Maunder30-Mar-23 6:43
cofounderChris Maunder30-Mar-23 6:43 
QuestionCodeProject upgrade from 1.6.8.x to 2.0.7 using Blue Iris classification for moving cars, trucks, bus, vehicles show AI error Pin
Pierre Kirby10-Feb-23 10:28
Pierre Kirby10-Feb-23 10:28 
AnswerRe: CodeProject upgrade from 1.6.8.x to 2.0.7 using Blue Iris classification for moving cars, trucks, bus, vehicles show AI error Pin
Mike Lud10-Feb-23 11:02
communityengineerMike Lud10-Feb-23 11:02 
GeneralRe: CodeProject upgrade from 1.6.8.x to 2.0.7 using Blue Iris classification for moving cars, trucks, bus, vehicles show AI error Pin
Pierre Kirby10-Feb-23 16:33
Pierre Kirby10-Feb-23 16:33 
QuestionMemory Leaks with 2.0.7 Pin
StefanLU8-Feb-23 7:11
StefanLU8-Feb-23 7:11 
AnswerRe: Memory Leaks with 2.0.7 Pin
laupid8-Feb-23 7:39
laupid8-Feb-23 7:39 
GeneralRe: Memory Leaks with 2.0.7 Pin
Chris Maunder8-Feb-23 16:13
cofounderChris Maunder8-Feb-23 16:13 
GeneralRe: Memory Leaks with 2.0.7 Pin
StefanLU9-Feb-23 4:39
StefanLU9-Feb-23 4:39 
GeneralRe: Memory Leaks with 2.0.7 Pin
Chris Maunder9-Feb-23 6:14
cofounderChris Maunder9-Feb-23 6:14 
GeneralRe: Memory Leaks with 2.0.7 Pin
laupid9-Feb-23 17:05
laupid9-Feb-23 17:05 
GeneralRe: Memory Leaks with 2.0.7 Pin
StefanLU11-Feb-23 21:35
StefanLU11-Feb-23 21:35 

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.