Click here to Skip to main content
15,887,267 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   488.5K   270   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: After install latest AI Server the setup.bat script fails Pin
Member 1399388110-Mar-24 10:45
Member 1399388110-Mar-24 10:45 
GeneralRe: After install latest AI Server the setup.bat script fails Pin
Member 1399388110-Mar-24 10:46
Member 1399388110-Mar-24 10:46 
GeneralRe: After install latest AI Server the setup.bat script fails Pin
Matthew Dennis11-Mar-24 5:15
sysadminMatthew Dennis11-Mar-24 5:15 
QuestionCode Project Server Freezes -- Open Pin
Mike Smith Apr20239-Mar-24 14:21
Mike Smith Apr20239-Mar-24 14:21 
AnswerRe: Code Project Server Freezes Pin
Mike Smith Apr202310-Mar-24 15:08
Mike Smith Apr202310-Mar-24 15:08 
AnswerRe: Code Project Server Freezes -- Open Pin
Sean Ewington11-Mar-24 6:07
staffSean Ewington11-Mar-24 6:07 
GeneralRe: Code Project Server Freezes -- Open Pin
Mike Smith Apr202311-Mar-24 7:55
Mike Smith Apr202311-Mar-24 7:55 
GeneralRe: Code Project Server Freezes -- Open Pin
Mike Smith Apr202311-Mar-24 17:57
Mike Smith Apr202311-Mar-24 17:57 
This is a previous version running as a test on my Windows 11 laptop. Note high CPU usage at times with no errors generated.

Server version: 2.5.1
System: Windows
Operating System: Windows (Microsoft Windows 11 version 10.0.22621)
CPUs: 12th Gen Intel(R) Core(TM) i7-1255U (Intel)
1 CPU x 10 cores. 12 logical processors (x64)
GPU (Primary): Intel(R) Iris(R) Xe Graphics (1,024 MiB) (Intel Corporation)
Driver: 31.0.101.4502
System RAM: 16 GiB
Platform: Windows
BuildConfig: Release
Execution Env: Native
Runtime Env: Production
.NET framework: .NET 7.0.10
Default Python:
Video adapter info:
Intel(R) Iris(R) Xe Graphics:
Driver Version 31.0.101.4502
Video Processor Intel(R) Iris(R) Xe Graphics Family
System GPU info:
GPU 3D Usage 11%
GPU RAM Usage 0
Global Environment variables:
CPAI_APPROOTPATH = <root>
CPAI_PORT = 32168

------------------------------------------------

15:50:37:System: Windows
15:50:37:Operating System: Windows (Microsoft Windows 11 version 10.0.22621)
15:50:37:CPUs: 12th Gen Intel(R) Core(TM) i7-1255U (Intel)
15:50:37: 1 CPU x 10 cores. 12 logical processors (x64)
15:50:37:GPU (Primary): Intel(R) Iris(R) Xe Graphics (1,024 MiB) (Intel Corporation)
15:50:37: Driver: 31.0.101.4502
15:50:37:System RAM: 16 GiB
15:50:37:Platform: Windows
15:50:37:BuildConfig: Release
15:50:37:Execution Env: Native
15:50:37:Runtime Env: Production
15:50:37:.NET framework: .NET 7.0.10
15:50:37:Default Python:
15:50:37:App DataDir: C:\ProgramData\CodeProject\AI
15:50:37:Video adapter info:
15:50:37: Intel(R) Iris(R) Xe Graphics:
15:50:37: Driver Version 31.0.101.4502
15:50:37: Video Processor Intel(R) Iris(R) Xe Graphics Family
15:50:37:STARTING CODEPROJECT.AI SERVER
15:50:37:RUNTIMES_PATH = C:\Program Files\CodeProject\AI\runtimes
15:50:37:PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
15:50:37:MODULES_PATH = C:\Program Files\CodeProject\AI\modules
15:50:37:PYTHON_PATH = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
15:50:37:Data Dir = C:\ProgramData\CodeProject\AI
15:50:37:Server version: 2.5.1
15:50:41:
15:50:41:Module 'Object Detection (YOLOv5 6.2)' 1.9.0 (ID: ObjectDetectionYOLOv5-6.2)
15:50:41:Valid: True
15:50:41:Module Path: <root>\modules\ObjectDetectionYOLOv5-6.2
15:50:41:AutoStart: True
15:50:41:Queue: objectdetection_queue
15:50:41:Runtime: python3.7
15:50:41:Runtime Loc: Shared
15:50:41:FilePath: detect_adapter.py
15:50:41:Pre installed: False
15:50:41:Start pause: 1 sec
15:50:41:LogVerbosity:
15:50:41:Platforms: all,!raspberrypi,!jetson
15:50:41:GPU Libraries: installed if available
15:50:41:GPU Enabled: enabled
15:50:41:Parallelism: 0
15:50:41:Accelerator:
15:50:41:Half Precis.: enable
15:50:41:Environment Variables
15:50:41:APPDIR = <root>\modules\ObjectDetectionYOLOv5-6.2
15:50:41:CPAI_MODULE_ENABLE_GPU = True
15:50:41:CUSTOM_MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\custom-models
15:50:41:MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\assets
15:50:41:MODEL_SIZE = Medium
15:50:41:USE_CUDA = True
15:50:41:YOLOv5_AUTOINSTALL = false
15:50:41:YOLOv5_VERBOSE = false
15:50:41:
15:50:41:Started Object Detection (YOLOv5 6.2) module
15:50:50:detect_adapter.py: Running init for Object Detection (YOLOv5 6.2)
15:50:58:A new version 2.5.6 is available
23:38:50:Sending shutdown request to python/ObjectDetectionYOLOv5-6.2
23:38:56:detect_adapter.py: Inference processing will occur on device 'CPU'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Detecting using actionnetv2
23:38:56:detect_adapter.py: Inference processing will occur on device 'CPU'
23:38:56:detect_adapter.py: Detecting using actionnetv2
23:38:56:detect_adapter.py: Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...b0162f) took 801ms
23:38:56:detect_adapter.py: Retrieved objectdetection_queue command 'custom'
23:38:56:detect_adapter.py: Model Path is C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\custom-models\actionnetv2.pt
23:38:56:detect_adapter.py: Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...146336) took 3697ms
23:38:56:detect_adapter.py: Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0b7978) took 3696ms
23:38:57:Module ObjectDetectionYOLOv5-6.2 has shutdown
23:38:57:detect_adapter.py: has exited
23:39:23:ObjectDetectionYOLOv5-6.2 went quietly
23:39:23:
23:39:23:Module 'Object Detection (YOLOv5 6.2)' 1.9.0 (ID: ObjectDetectionYOLOv5-6.2)
23:39:23:Valid: True
23:39:23:Module Path: <root>\modules\ObjectDetectionYOLOv5-6.2
23:39:23:AutoStart: True
23:39:23:Queue: objectdetection_queue
23:39:23:Runtime: python3.7
23:39:23:Runtime Loc: Shared
23:39:23:FilePath: detect_adapter.py
23:39:23:Pre installed: False
23:39:23:Start pause: 1 sec
23:39:23:LogVerbosity:
23:39:23:Platforms: all,!raspberrypi,!jetson
23:39:23:GPU Libraries: installed if available
23:39:23:GPU Enabled: enabled
23:39:23:Parallelism: 0
23:39:23:Accelerator:
23:39:23:Half Precis.: enable
23:39:23:Environment Variables
23:39:23:APPDIR = <root>\modules\ObjectDetectionYOLOv5-6.2
23:39:23:CPAI_MODULE_ENABLE_GPU = True
23:39:23:CUSTOM_MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\custom-models
23:39:23:MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\assets
23:39:23:MODEL_SIZE = Medium
23:39:23:USE_CUDA = True
23:39:23:YOLOv5_AUTOINSTALL = false
23:39:23:YOLOv5_VERBOSE = false
23:39:23:
23:39:23:Started Object Detection (YOLOv5 6.2) module
23:39:35:detect_adapter.py: Running init for Object Detection (YOLOv5 6.2)
23:39:36:Sending shutdown request to python/ObjectDetectionYOLOv5-6.2
23:39:51:Module ObjectDetectionYOLOv5-6.2 has shutdown
23:39:51:detect_adapter.py: has exited
23:40:09:ObjectDetectionYOLOv5-6.2 went quietly
23:40:09:
23:40:09:Module 'Object Detection (YOLOv5 6.2)' 1.9.0 (ID: ObjectDetectionYOLOv5-6.2)
23:40:09:Valid: True
23:40:09:Module Path: <root>\modules\ObjectDetectionYOLOv5-6.2
23:40:09:AutoStart: True
23:40:09:Queue: objectdetection_queue
23:40:09:Runtime: python3.7
23:40:09:Runtime Loc: Shared
23:40:09:FilePath: detect_adapter.py
23:40:09:Pre installed: False
23:40:09:Start pause: 1 sec
23:40:09:LogVerbosity:
23:40:09:Platforms: all,!raspberrypi,!jetson
23:40:09:GPU Libraries: installed if available
23:40:09:GPU Enabled: enabled
23:40:09:Parallelism: 0
23:40:09:Accelerator:
23:40:09:Half Precis.: enable
23:40:09:Environment Variables
23:40:09:APPDIR = <root>\modules\ObjectDetectionYOLOv5-6.2
23:40:09:CPAI_MODULE_ENABLE_GPU = True
23:40:09:CUSTOM_MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\custom-models
23:40:09:MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5-6.2\assets
23:40:09:MODEL_SIZE = Medium
23:40:09:USE_CUDA = True
23:40:09:YOLOv5_AUTOINSTALL = false
23:40:09:YOLOv5_VERBOSE = false
23:40:09:
23:40:09:Started Object Detection (YOLOv5 6.2) module
23:40:18:detect_adapter.py: Running init for Object Detection (YOLOv5 6.2)
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...abf2eb) took 4833ms
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...1787de) took 4883ms
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...bd29a3) took 4888ms
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...51fb02) took 4912ms
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...341898) took 4928ms
23:40:47:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:40:47:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:40:47:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:40:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...e4bbeb) took 5149ms
23:40:49:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:40:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...a133ce) took 1956ms
23:40:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...654733) took 1947ms
23:40:49:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:40:57:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7d9274) took 10851ms
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...83a4f4) took 12659ms
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...219983) took 12631ms
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3fc017) took 10893ms
23:41:00:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7512c1) took 12833ms
23:41:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a34ef9) took 12691ms
23:41:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:04:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e49b30) took 3589ms
23:41:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...fe1cef) took 3560ms
23:41:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6cc902) took 3685ms
23:41:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...935b03) took 3613ms
23:41:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:06:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:06:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5f4dc8) took 2498ms
23:41:06:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...086c74) took 6386ms
23:41:06:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:07:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6da3b9) took 6694ms
23:41:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:07:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...465a9e) took 3354ms
23:41:07:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d2cc84) took 3399ms
23:41:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:07:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1f8cb0) took 3414ms
23:41:08:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:08:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b18de6) took 1653ms
23:41:08:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e2b1be) took 1588ms
23:41:08:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:08:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:08:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b9e574) took 1453ms
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...01ff7b) took 2730ms
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...97e2a1) took 2562ms
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9fdea2) took 1944ms
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...707a1b) took 2866ms
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...037de7) took 2234ms
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9b3fd2) took 1876ms
23:41:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:11:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:11:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4e2d2d) took 1478ms
23:41:12:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...00145c) took 2282ms
23:41:12:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...97221a) took 2534ms
23:41:12:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...02f3c1) took 2435ms
23:41:12:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:12:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cb1bb4) took 2392ms
23:41:12:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...31f5a5) took 2317ms
23:41:12:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:12:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:12:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:13:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:13:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:13:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...001420) took 917ms
23:41:13:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...109fe0) took 2348ms
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c20316) took 2298ms
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...651ddc) took 2469ms
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f79a50) took 2315ms
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e9ce80) took 2462ms
23:41:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ca5405) took 1572ms
23:41:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...1b6a3f) took 3149ms
23:41:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...62074a) took 3342ms
23:41:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...a5b579) took 3361ms
23:41:19:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:19:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:19:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...c5a063) took 3408ms
23:41:28:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...78ceed) took 13075ms
23:41:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f27977) took 13339ms
23:41:34:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:34:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:34:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...20e781) took 14979ms
23:41:34:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6c5593) took 15398ms
23:41:37:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1cd9ca) took 5049ms
23:41:37:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9215ee) took 5243ms
23:41:39:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:39:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:39:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...ec5f43) took 3722ms
23:41:39:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:39:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...615050) took 3932ms
23:41:40:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:40:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4edd34) took 2562ms
23:41:40:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:40:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c3ba6e) took 2807ms
23:41:43:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0f4d49) took 3309ms
23:41:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...df65c4) took 3186ms
23:41:43:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:44:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:46:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3f0827) took 2536ms
23:41:46:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7f59e2) took 7615ms
23:41:46:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:46:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...aaed88) took 3011ms
23:41:47:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5a4bd2) took 7785ms
23:41:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:41:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...82e6c2) took 1928ms
23:41:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cd7292) took 1909ms
23:41:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...84cbb9) took 1579ms
23:41:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...efdd7f) took 1554ms
23:41:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:41:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...288a61) took 2188ms
23:41:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e81158) took 2201ms
23:41:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:41:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...aaf107) took 3745ms
23:41:53:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...955c10) took 3470ms
23:41:53:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:41:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...8c6191) took 2540ms
23:41:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c2a637) took 2608ms
23:41:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:41:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...2a569e) took 3146ms
23:41:57:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:41:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b5ffea) took 3611ms
23:42:00:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:01:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...86eca2) took 4441ms
23:42:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7d5f6f) took 4809ms
23:42:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9b1620) took 9191ms
23:42:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0e0257) took 9666ms
23:42:05:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:05:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:05:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...200882) took 2605ms
23:42:05:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9aaf3b) took 2679ms
23:42:06:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:06:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:06:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...8bf5fe) took 3914ms
23:42:06:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...869620) took 3962ms
23:42:09:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:09:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:09:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e27908) took 3353ms
23:42:09:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:09:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4a95e9) took 4224ms
23:42:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...23d9de) took 6035ms
23:42:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ae6df5) took 5295ms
23:42:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:17:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...48eee7) took 10685ms
23:42:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:17:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e5c2b3) took 10994ms
23:42:18:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:18:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6322e8) took 3031ms
23:42:18:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:18:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3c8547) took 3180ms
23:42:19:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9dfa99) took 2156ms
23:42:19:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b5442f) took 2084ms
23:42:20:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:20:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...2cb527) took 2027ms
23:42:20:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e9c86b) took 1941ms
23:42:21:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...14b0e7) took 1794ms
23:42:21:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:21:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...682dc6) took 1685ms
23:42:22:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:22:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...baa186) took 1411ms
23:42:23:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:23:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e962c5) took 1410ms
23:42:23:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...c2e349) took 2280ms
23:42:23:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:24:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:24:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a73da3) took 1797ms
23:42:24:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...438f7b) took 1678ms
23:42:24:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:26:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:26:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1027db) took 1797ms
23:42:26:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...481a6d) took 1897ms
23:42:28:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1fcc09) took 5002ms
23:42:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d49d37) took 1787ms
23:42:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...bb9a76) took 3076ms
23:42:30:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...9a8c16) took 2988ms
23:42:32:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4c8a0e) took 2379ms
23:42:35:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:35:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...bf5440) took 2698ms
23:42:37:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:37:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9e6f52) took 6652ms
23:42:37:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:37:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6e28f0) took 2360ms
23:42:37:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:37:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b4a552) took 6815ms
23:42:38:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:42:38:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...fbb5b2) took 1724ms
23:42:39:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:39:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...14d6a0) took 1556ms
23:42:39:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...868657) took 1515ms
23:42:40:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:42:40:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...8d9692) took 1400ms
23:42:40:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:40:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...8dc830) took 1399ms
23:42:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:42:42:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c3d503) took 1731ms
23:42:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b9aff3) took 2447ms
23:42:44:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:42:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...0a6b84) took 3844ms
23:42:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...de073a) took 3872ms
23:42:47:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...078ce0) took 4485ms
23:42:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...401f60) took 5999ms
23:42:49:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...5004d2) took 6584ms
23:42:49:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:42:49:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...f6219f) took 6781ms
23:42:50:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...99d26d) took 6244ms
23:42:55:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:42:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c5ef11) took 6756ms
23:42:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...eb86dc) took 6651ms
23:42:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...35d819) took 13711ms
23:43:00:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:43:03:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...eae469) took 12687ms
23:43:03:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a9221d) took 13781ms
23:43:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:03:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...289088) took 14110ms
23:43:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...264496) took 7849ms
23:43:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:05:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:43:07:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6b5962) took 4306ms
23:43:08:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...eb26fa) took 3858ms
23:43:09:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:09:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...b9cd3c) took 5613ms
23:43:10:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:43:10:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b758fd) took 11158ms
23:43:11:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:11:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9e84a3) took 3649ms
23:43:13:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:13:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b03f11) took 9190ms
23:43:14:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:14:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f83374) took 3549ms
23:43:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:15:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...94042b) took 3467ms
23:43:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:17:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6e6fbf) took 7819ms
23:43:17:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f55e88) took 3612ms
23:43:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:17:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...13ab62) took 3348ms
23:43:18:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:18:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cb7db7) took 2919ms
23:43:19:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e0cbd8) took 1955ms
23:43:19:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e0e674) took 2321ms
23:43:19:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...164c38) took 1959ms
23:43:19:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:20:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:20:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...261af5) took 1914ms
23:43:20:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ceee5c) took 1454ms
23:43:21:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:21:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...827f9b) took 1424ms
23:43:21:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...af568b) took 1452ms
23:43:21:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:21:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0a845e) took 1241ms
23:43:22:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:22:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...67ec4a) took 1128ms
23:43:22:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:23:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5fe63c) took 1007ms
23:43:23:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:23:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...00c844) took 1091ms
23:43:23:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0091c6) took 962ms
23:43:26:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...e398cd) took 1380ms
23:43:29:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:43:29:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a51693) took 3437ms
23:43:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ffebb5) took 736ms
23:43:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f028d3) took 685ms
23:43:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...99ebf7) took 680ms
23:43:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b6f779) took 781ms
23:43:33:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:33:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9307e7) took 591ms
23:43:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...80cd06) took 1200ms
23:43:46:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:43:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d4d76b) took 3587ms
23:43:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:43:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...bf093b) took 682ms
23:43:50:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:43:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a9b941) took 771ms
23:43:50:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:43:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0227c6) took 603ms
23:43:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:43:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0abc0e) took 673ms
23:43:52:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:43:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...2af36c) took 609ms
23:44:27:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...f81461) took 1168ms
23:44:31:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:44:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ea1d16) took 3464ms
23:44:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:44:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...200bbf) took 662ms
23:44:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:44:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...50810a) took 667ms
23:44:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:44:33:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d6d078) took 701ms
23:44:34:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:44:34:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...38477b) took 713ms
23:44:34:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:44:34:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...615ce5) took 670ms
23:44:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...9320f9) took 3292ms
23:44:45:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:44:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...8305b9) took 3577ms
23:44:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...da8183) took 3547ms
23:44:45:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...b8d4cc) took 3598ms
23:44:55:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:44:55:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:44:55:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:44:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1c131b) took 10221ms
23:44:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5e189c) took 9836ms
23:44:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:44:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cb5299) took 9800ms
23:44:56:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:44:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...62a616) took 10163ms
23:44:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:44:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:44:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a0c700) took 1671ms
23:44:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:44:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...98db0c) took 1705ms
23:44:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:44:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9dec7b) took 1590ms
23:44:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ec5a2b) took 1749ms
23:44:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:44:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ec4559) took 1809ms
23:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:44:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9d631b) took 1807ms
23:44:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9ec4cd) took 1651ms
23:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:44:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...01f7ab) took 2008ms
23:45:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:45:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...70af53) took 1724ms
23:45:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:45:01:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...98ede1) took 1688ms
23:45:01:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d0d6a5) took 1837ms
23:45:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:45:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:45:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...78310d) took 2086ms
23:45:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:45:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...819076) took 1547ms
23:45:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ccea0f) took 1834ms
23:45:02:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:45:02:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4c077d) took 1682ms
23:45:02:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:45:03:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:45:03:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5c0c27) took 1808ms
23:45:04:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:45:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...2c2299) took 1635ms
23:45:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1230d6) took 1719ms
23:45:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ea36f9) took 1629ms
23:45:04:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6235b0) took 1039ms
23:45:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...95d406) took 1149ms
23:45:47:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:45:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f7972e) took 3272ms
23:45:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:45:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...33836b) took 589ms
23:45:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:45:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cdd2b1) took 662ms
23:45:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:45:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9da26c) took 667ms
23:45:50:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:45:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3cfc33) took 608ms
23:45:50:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:45:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...186780) took 592ms
23:46:27:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...d7989d) took 1091ms
23:46:30:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:46:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3d5664) took 3120ms
23:46:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:46:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...72d27d) took 597ms
23:46:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:46:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e0be04) took 576ms
23:46:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:46:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1c8253) took 625ms
23:46:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:46:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...43e9d3) took 570ms
23:46:33:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:46:33:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f65794) took 535ms
23:46:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...cad6ce) took 2600ms
23:46:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...47fda8) took 2819ms
23:46:44:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:46:44:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:46:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...59d21d) took 3194ms
23:46:51:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:46:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f48e29) took 7246ms
23:46:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:46:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4a4236) took 7652ms
23:46:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:46:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...abb171) took 7553ms
23:46:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:46:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...13cd85) took 1614ms
23:46:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...5d50b3) took 1347ms
23:46:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:46:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:46:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3ae1ad) took 1552ms
23:46:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:46:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d3921f) took 1565ms
23:46:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:46:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0ba826) took 1580ms
23:46:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:46:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...275297) took 1626ms
23:46:56:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:46:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d77679) took 1322ms
23:46:56:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:46:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c4f279) took 1451ms
23:46:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:46:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...dd64ee) took 1706ms
23:46:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:46:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...b3d2e4) took 1531ms
23:46:57:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:46:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...759a71) took 1416ms
23:46:58:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:46:58:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9f7cde) took 1511ms
23:46:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...351b3a) took 1266ms
23:46:59:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:46:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...70ec81) took 1377ms
23:46:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...382908) took 946ms
23:47:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...5ead1b) took 1591ms
23:47:44:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:47:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c17e7b) took 3566ms
23:47:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:47:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...39127a) took 763ms
23:47:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:47:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a1917b) took 707ms
23:47:50:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:47:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ce6984) took 1130ms
23:47:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:47:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...fd7c50) took 1267ms
23:47:52:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:47:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...432091) took 899ms
23:48:26:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...5c1e10) took 1060ms
23:48:30:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:48:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1cf4fd) took 3512ms
23:48:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:48:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6af848) took 677ms
23:48:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:48:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...541def) took 936ms
23:48:32:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:48:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...08a3f9) took 712ms
23:48:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:48:33:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...519379) took 673ms
23:48:34:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:48:34:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7462b0) took 937ms
23:48:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...1e1566) took 2519ms
23:48:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...69bbda) took 2651ms
23:48:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...eeabb9) took 2705ms
23:48:43:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:48:43:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:48:48:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:48:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c878ee) took 7609ms
23:48:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...d535a0) took 7452ms
23:48:51:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9ac2e1) took 7652ms
23:48:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:48:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:48:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:48:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3f11e1) took 1219ms
23:48:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...28bea4) took 1256ms
23:48:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:48:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...c8be0f) took 1340ms
23:48:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:48:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:48:53:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...e9d9d0) took 1105ms
23:48:53:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:48:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...824037) took 1373ms
23:48:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...6aaa38) took 1221ms
23:48:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:48:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:48:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...104997) took 1284ms
23:48:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:48:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f56eab) took 1384ms
23:48:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7da272) took 1226ms
23:48:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:48:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:48:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9e351d) took 1094ms
23:48:56:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:48:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...72e1eb) took 1199ms
23:48:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...929ba5) took 1149ms
23:48:56:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:48:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...4c3748) took 988ms
23:48:57:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:48:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ef31ce) took 864ms
23:48:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...a43cfb) took 744ms
23:49:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...89a093) took 1317ms
23:49:46:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:49:46:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3b87b0) took 3517ms
23:49:47:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:49:47:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...96d903) took 768ms
23:49:48:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:49:48:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3e3ee6) took 731ms
23:49:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:49:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f96992) took 653ms
23:49:49:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:49:49:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...283123) took 856ms
23:49:50:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:49:50:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...27710c) took 737ms
23:50:25:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...55fe76) took 1068ms
23:50:29:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:50:29:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...37fd4c) took 3277ms
23:50:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:50:29:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...fa9726) took 656ms
23:50:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:50:30:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...179b65) took 726ms
23:50:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:50:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...665b47) took 559ms
23:50:31:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:50:31:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...ade8fc) took 812ms
23:50:32:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:50:32:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f3c00e) took 651ms
23:50:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...805a85) took 3321ms
23:50:43:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...48389c) took 3352ms
23:50:44:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:50:44:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:50:44:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'detect' (...a9fdaa) took 3741ms
23:50:52:Object Detection (YOLOv5 6.2): Detecting using actionnetv2
23:50:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7a0839) took 8836ms
23:50:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...aba353) took 8225ms
23:50:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:50:52:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...128a4a) took 9019ms
23:50:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:50:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-animal
23:50:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...63666a) took 1384ms
23:50:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:50:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...58e7a1) took 1581ms
23:50:54:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:50:54:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...2d98e8) took 1907ms
23:50:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
23:50:55:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f9ee1c) took 1747ms
23:50:55:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:50:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...cb53d7) took 1685ms
23:50:56:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:50:56:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...71246c) took 1893ms
23:50:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-dark
23:50:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...9d9cc5) took 1598ms
23:50:57:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:50:57:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...1bfc99) took 1602ms
23:50:58:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:50:58:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...f84005) took 1499ms
23:50:58:Object Detection (YOLOv5 6.2): Detecting using ipcam-general
23:50:58:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...0fd0da) took 1425ms
23:50:59:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:50:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...57c74b) took 1335ms
23:50:59:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:50:59:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...3d8b0a) took 1683ms
23:51:00:Object Detection (YOLOv5 6.2): Detecting using license-plate
23:51:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...7df5c3) took 1410ms
23:51:00:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...219230) took 1331ms
23:51:01:Object Detection (YOLOv5 6.2): Rec'd request for Object Detection (YOLOv5 6.2) command 'custom' (...19d4cf) took 998ms
Logging level

Info

modified 12-Mar-24 16:09pm.

QuestionUpgraded to V 2.5.6 and now CodeProject AI service won't start -- Try this workaround Pin
Don Couchman9-Mar-24 6:26
Don Couchman9-Mar-24 6:26 
AnswerRe: Upgraded to V 2.5.6 and now CodeProject AI service won't start Pin
Sean Ewington11-Mar-24 6:15
staffSean Ewington11-Mar-24 6:15 
BugLPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install -- Try this workaround Pin
Paul Blacknell9-Mar-24 1:29
Paul Blacknell9-Mar-24 1:29 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Matthew Dennis11-Mar-24 4:44
sysadminMatthew Dennis11-Mar-24 4:44 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Matthew Dennis11-Mar-24 4:53
sysadminMatthew Dennis11-Mar-24 4:53 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Matthew Dennis11-Mar-24 5:10
sysadminMatthew Dennis11-Mar-24 5:10 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Matthew Dennis11-Mar-24 5:28
sysadminMatthew Dennis11-Mar-24 5:28 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Paul Blacknell11-Mar-24 6:39
Paul Blacknell11-Mar-24 6:39 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Sean Ewington12-Mar-24 11:01
staffSean Ewington12-Mar-24 11:01 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Paul Blacknell12-Mar-24 23:03
Paul Blacknell12-Mar-24 23:03 
GeneralRe: LPR 3.0.2 fails to install and start on clean 2.5.6 rpi64 docker install Pin
Matthew Dennis13-Mar-24 11:39
sysadminMatthew Dennis13-Mar-24 11:39 
Questionhow to remove mesh server? -- Resolved Pin
mpl13378-Mar-24 8:59
mpl13378-Mar-24 8:59 
AnswerRe: how to remove mesh server? Pin
Sean Ewington8-Mar-24 9:15
staffSean Ewington8-Mar-24 9:15 
GeneralRe: how to remove mesh server? Pin
mpl13378-Mar-24 9:17
mpl13378-Mar-24 9:17 
GeneralRe: how to remove mesh server? Pin
Sean Ewington8-Mar-24 10:08
staffSean Ewington8-Mar-24 10:08 
GeneralRe: how to remove mesh server? Pin
mpl13379-Mar-24 13:03
mpl13379-Mar-24 13:03 
BugError after upgrade with watchtower -- Investigating Pin
Group 162173706-Mar-24 22:17
Group 162173706-Mar-24 22:17 

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

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