Click here to Skip to main content
15,895,462 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (92 votes)
29 Feb 202416 min read 3.6M   496.6K   271   6.8K
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

 
GeneralRe: 2.1.3 is live Pin
Adam Byers21-Apr-23 5:57
Adam Byers21-Apr-23 5:57 
GeneralRe: 2.1.3 is live Pin
Chris Maunder21-Apr-23 6:26
cofounderChris Maunder21-Apr-23 6:26 
GeneralRe: 2.1.3 is live Pin
Chris Maunder21-Apr-23 6:22
cofounderChris Maunder21-Apr-23 6:22 
GeneralRe: 2.1.3 is live Pin
Chris Maunder21-Apr-23 6:25
cofounderChris Maunder21-Apr-23 6:25 
GeneralRe: 2.1.3 is live Pin
Adam Byers21-Apr-23 9:08
Adam Byers21-Apr-23 9:08 
GeneralRe: 2.1.3 is live Pin
Adam Byers21-Apr-23 10:32
Adam Byers21-Apr-23 10:32 
GeneralRe: 2.1.3 is live Pin
Adam Byers21-Apr-23 10:47
Adam Byers21-Apr-23 10:47 
GeneralRe: 2.1.3 is live Pin
Adam Byers21-Apr-23 11:00
Adam Byers21-Apr-23 11:00 
Apologies, should have looked at the logs. There is a RuntimeError error when it first starts...

CODEPROJECT
CodeProject.AI
Docs
Forums
The Code
CodeProject.AI Explorer
Server is Online
2.1.4-Beta
☀️
Your self contained AI server. Learn how to integrate with other programs or add your own AI module. Having problems? See our common solutions or ask a question. Blue Iris users: please read our Wyze cam setup guide and common issues pages.
Status
Server logs
System Info
Install Modules
13:34:13:Operating System: Windows (Microsoft Windows 10.0.19044)
13:34:13:CPUs:             Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz
13:34:13:                  1 CPU x 6 cores. 12 logical processors (x64)
13:34:13:GPU:              NVIDIA GeForce GTX 1650 SUPER (4 GiB) (NVidia)
13:34:13:                  Driver: 531.68 CUDA: 12.1 Compute: 7.5
13:34:13:System RAM:       32 GiB
13:34:13:Target:           Windows
13:34:13:BuildConfig:      Release
13:34:13:Execution Env:    Native
13:34:13:Runtime Env:      Production
13:34:13:.NET framework:   .NET 7.0.3
13:34:13:App DataDir:      C:\ProgramData\CodeProject\AI
13:34:13:Video adapter info:
13:34:13:  NVIDIA GeForce GTX 1650 SUPER:
13:34:13:    Driver Version     31.0.15.3168
13:34:13:    Video Processor    NVIDIA GeForce GTX 1650 SUPER
13:34:13:  Intel(R) UHD Graphics 630:
13:34:13:    Driver Version     30.0.101.1692
13:34:13:    Video Processor    Intel(R) UHD Graphics Family
13:34:13:ROOT_PATH                 = C:\Program Files\CodeProject\AI
13:34:13:RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
13:34:13:PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
13:34:13:MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
13:34:13:PYTHON_PATH               = \bin\windows\%PYTHON_RUNTIME%\venv\scripts\Python
13:34:13:Data Dir                  = C:\ProgramData\CodeProject\AI
13:34:13:Server version:   2.1.4-Beta
13:34:16:
13:34:16:Module 'Object Detection (YOLOv5 6.2)' (ID: ObjectDetectionYolo)
13:34:16:AutoStart:     True
13:34:16:Queue:         objectdetection_queue
13:34:16:Platforms:     all
13:34:16:GPU:           Support enabled
13:34:16:Parallelism:   0
13:34:16:Accelerator:
13:34:16:Half Precis.:  enable
13:34:16:Runtime:       python37
13:34:16:Runtime Loc:   Shared
13:34:16:FilePath:      detect_adapter.py
13:34:16:Pre installed: False
13:34:16:Start pause:   1 sec
13:34:16:LogVerbosity:
13:34:16:Valid:         True
13:34:16:Environment Variables
13:34:16:APPDIR                  = %CURRENT_MODULE_PATH%
13:34:16:CPAI_MODULE_SUPPORT_GPU = True
13:34:16:CUSTOM_MODELS_DIR       = %CURRENT_MODULE_PATH%/custom-models
13:34:16:MODELS_DIR              = %CURRENT_MODULE_PATH%/assets
13:34:16:MODEL_SIZE              = Medium
13:34:16:USE_CUDA                = True
13:34:16:YOLOv5_AUTOINSTALL      = false
13:34:16:YOLOv5_VERBOSE          = false
13:34:16:
13:34:16:Started Object Detection (YOLOv5 6.2) module
13:34:18:Server: This is the latest version
13:36:58:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'list-custom' (...38f8e8) took 2ms
13:36:59:Sending shutdown request to python/ObjectDetectionYolo
13:37:09:Module ObjectDetectionYolo has shutdown
13:37:09:detect_adapter.py: has exited
13:37:32:ObjectDetectionYolo went quietly
13:37:32:
13:37:32:Module 'Object Detection (YOLOv5 6.2)' (ID: ObjectDetectionYolo)
13:37:32:AutoStart:     True
13:37:32:Queue:         objectdetection_queue
13:37:32:Platforms:     all
13:37:32:GPU:           Support enabled
13:37:32:Parallelism:   0
13:37:32:Accelerator:
13:37:32:Half Precis.:  enable
13:37:32:Runtime:       python37
13:37:32:Runtime Loc:   Shared
13:37:32:FilePath:      detect_adapter.py
13:37:32:Pre installed: False
13:37:32:Start pause:   1 sec
13:37:32:LogVerbosity:
13:37:32:Valid:         True
13:37:32:Environment Variables
13:37:32:APPDIR                  = %CURRENT_MODULE_PATH%
13:37:32:CPAI_MODULE_SUPPORT_GPU = True
13:37:32:CUSTOM_MODELS_DIR       = %CURRENT_MODULE_PATH%/custom-models
13:37:32:MODELS_DIR              = %CURRENT_MODULE_PATH%/assets
13:37:32:MODEL_SIZE              = Medium
13:37:32:USE_CUDA                = True
13:37:32:YOLOv5_AUTOINSTALL      = false
13:37:32:YOLOv5_VERBOSE          = false
13:37:32:
13:37:32:Started Object Detection (YOLOv5 6.2) module
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...5bd029) took 6396ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b36819) took 6398ms
13:37:45:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (60) must match the size of tensor b (48) at non-singleton dimension 2
13:37:45:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (60) must match the size of tensor b (48) at non-singleton dimension 2
13:37:45:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (60) must match the size of tensor b (48) at non-singleton dimension 2
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...23f7f3) took 6436ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...e0c4bc) took 6442ms
13:37:45:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (60) must match the size of tensor b (48) at non-singleton dimension 2
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b22b88) took 6441ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...73b70c) took 6443ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...7df47a) took 242ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...33bf75) took 251ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ee97c5) took 265ms
13:37:45:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...cc52a6) took 272ms
13:38:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'list-custom' (...0d5030) took 2ms
13:38:04:Sending shutdown request to python/ObjectDetectionYolo
13:38:13:detect_adapter.py: GPU compute capability is 7.5
13:38:13:detect_adapter.py: Using half-precision for the device 'NVIDIA GeForce GTX 1650 SUPER'
13:38:13:detect_adapter.py: Inference processing will occur on device 'NVIDIA GeForce GTX 1650 SUPER'
13:38:13:Module ObjectDetectionYolo has shutdown
13:38:13:detect_adapter.py: has exited
13:38:37:ObjectDetectionYolo went quietly
13:38:37:
13:38:37:Module 'Object Detection (YOLOv5 6.2)' (ID: ObjectDetectionYolo)
13:38:37:AutoStart:     True
13:38:37:Queue:         objectdetection_queue
13:38:37:Platforms:     all
13:38:37:GPU:           Support enabled
13:38:37:Parallelism:   0
13:38:37:Accelerator:
13:38:37:Half Precis.:  enable
13:38:37:Runtime:       python37
13:38:37:Runtime Loc:   Shared
13:38:37:FilePath:      detect_adapter.py
13:38:37:Pre installed: False
13:38:37:Start pause:   1 sec
13:38:37:LogVerbosity:
13:38:37:Valid:         True
13:38:37:Environment Variables
13:38:37:APPDIR                  = %CURRENT_MODULE_PATH%
13:38:37:CPAI_MODULE_SUPPORT_GPU = True
13:38:37:CUSTOM_MODELS_DIR       = %CURRENT_MODULE_PATH%/custom-models
13:38:37:MODELS_DIR              = %CURRENT_MODULE_PATH%/assets
13:38:37:MODEL_SIZE              = Medium
13:38:37:USE_CUDA                = True
13:38:37:YOLOv5_AUTOINSTALL      = false
13:38:37:YOLOv5_VERBOSE          = false
13:38:37:
13:38:37:Started Object Detection (YOLOv5 6.2) module
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...3e6707) took 3583ms
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c2e49a) took 3579ms
13:38:46:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (15) must match the size of tensor b (12) at non-singleton dimension 2
13:38:46:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 74, in forward
    xy = (xy * 2 + self.grid[i]) * self.stride[i]  # xy
RuntimeError: The size of tensor a (15) must match the size of tensor b (12) at non-singleton dimension 2
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...4af48c) took 3579ms
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...9e4384) took 3594ms
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...a3a104) took 3591ms
13:38:46:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...18e6bf) took 3590ms
13:38:47:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...7864e4) took 293ms
13:38:47:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c61cce) took 307ms
13:38:47:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...495b4c) took 301ms
13:38:47:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ae686a) took 308ms
13:39:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d4fd01) took 363ms
13:39:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:39:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f562df) took 249ms
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c25c0a) took 355ms
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...da3236) took 369ms
13:39:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:39:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b72605) took 128ms
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2247f1) took 105ms
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...5601ef) took 113ms
13:39:17:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:39:17:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f1641c) took 81ms
13:39:18:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...282e11) took 117ms
13:39:18:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:39:18:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...40e5bd) took 64ms
13:40:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...5e73ce) took 327ms
13:40:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...4bb18f) took 136ms
13:40:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...309b0c) took 133ms
13:40:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...9d15a9) took 61ms
13:40:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...99e6a8) took 98ms
13:40:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...271b47) took 55ms
13:40:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...44341c) took 97ms
13:40:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ab6e91) took 49ms
13:40:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...856965) took 111ms
13:40:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...060730) took 74ms
13:40:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...92386f) took 107ms
13:40:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2c0059) took 62ms
13:40:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0d5efc) took 129ms
13:40:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...52632e) took 84ms
13:40:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...537695) took 130ms
13:40:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ad2394) took 56ms
13:40:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f12b95) took 385ms
13:40:25:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...081725) took 474ms
13:40:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...03b229) took 169ms
13:40:25:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...64a0ec) took 85ms
13:40:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f8316e) took 125ms
13:40:26:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:26:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...344cf8) took 76ms
13:40:26:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6990d9) took 117ms
13:40:26:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:26:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...561e0b) took 77ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...543103) took 127ms
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...aa2138) took 247ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...04291d) took 430ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...3577a6) took 435ms
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...bedfbd) took 512ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6b29e8) took 347ms
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f4e09a) took 348ms
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...9f8461) took 377ms
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7ae9a6) took 298ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5fe91e) took 236ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...a13fd2) took 250ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ae7bba) took 178ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...314093) took 198ms
13:40:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...c7c1fa) took 179ms
13:41:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...424f19) took 285ms
13:41:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f3f770) took 145ms
13:41:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...73bbd5) took 161ms
13:41:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...6049b5) took 57ms
13:41:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...2d8a03) took 96ms
13:41:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...58e0de) took 56ms
13:41:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c3c899) took 98ms
13:41:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ffa47c) took 55ms
13:41:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6188f4) took 339ms
13:41:13:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...7081ce) took 145ms
13:41:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f63485) took 144ms
13:41:13:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b9624a) took 56ms
13:41:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...dc93d0) took 107ms
13:41:14:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d7f95e) took 62ms
13:41:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...cdcf70) took 100ms
13:41:14:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...0a806a) took 56ms
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ef107d) took 360ms
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d5cf40) took 375ms
13:41:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...934da2) took 188ms
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...7f2209) took 204ms
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5ffa2a) took 184ms
13:41:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2edbb0) took 72ms
13:41:34:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...a21a31) took 111ms
13:41:34:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:41:34:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...676193) took 66ms
13:42:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b6dd24) took 380ms
13:42:00:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...e50824) took 56ms
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b73874) took 307ms
13:42:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0210fc) took 426ms
13:42:27:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 75, in forward
    wh = (wh * 2) ** 2 * self.anchor_grid[i]  # wh
RuntimeError: The size of tensor a (60) must match the size of tensor b (64) at non-singleton dimension 2
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...aac1d9) took 425ms
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...0cf342) took 418ms
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c39cd8) took 444ms
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...bc36cd) took 475ms
13:42:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...a0d820) took 454ms
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...89b099) took 154ms
13:42:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...714da7) took 158ms
13:42:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...1ca0b2) took 153ms
13:42:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d5eee7) took 83ms
13:42:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...90c337) took 94ms
13:42:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...279fa9) took 44ms
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...dec87c) took 365ms
13:42:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d7a398) took 80ms
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...da33e4) took 122ms
13:42:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5daace) took 67ms
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...25e60a) took 108ms
13:42:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...4720d3) took 83ms
13:42:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...249cd0) took 115ms
13:42:43:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:42:43:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...dedf96) took 72ms
13:43:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...e3f530) took 251ms
13:43:13:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:43:13:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...109580) took 60ms
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...616e0e) took 430ms
13:43:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...3b96d2) took 171ms
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...c9af7e) took 162ms
13:43:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...51aa2d) took 72ms
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...384a8d) took 113ms
13:43:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:43:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...857934) took 66ms
13:43:52:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...44afda) took 108ms
13:43:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:43:52:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2c5deb) took 67ms
13:44:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b9c581) took 116ms
13:44:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...15e254) took 68ms
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...48fd6a) took 296ms
13:44:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6e72ed) took 372ms
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...55438d) took 390ms
13:44:27:Object Detection (YOLOv5 6.2):  [RuntimeError] : Traceback (most recent call last):
  File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYolo\detect.py", line 162, in do_detection
    det = detector(img, size=640)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\autograd\grad_mode.py", line 28, in decorate_context
    return func(*args, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 705, in forward
    y = self.model(x, augment=augment)  # forward
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\yolov5\models\common.py", line 515, in forward
    y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 209, in forward
    return self._forward_once(x, profile, visualize)  # single-scale inference, train
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 121, in _forward_once
    x = m(x)  # run
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\lib\site-packages\torch\nn\modules\module.py", line 1102, in _call_impl
    return forward_call(*input, **kwargs)
  File "C:\Program Files\CodeProject\AI\runtimes\bin\windows\python37\venv\Lib\site-packages\yolov5\models\yolo.py", line 75, in forward
    wh = (wh * 2) ** 2 * self.anchor_grid[i]  # wh
RuntimeError: The size of tensor a (32) must match the size of tensor b (24) at non-singleton dimension 2
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d110a2) took 390ms
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...865bdd) took 371ms
13:44:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...15c0df) took 381ms
13:44:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5ce6a0) took 124ms
13:44:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...1315fe) took 105ms
13:44:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f4cf6f) took 101ms
13:44:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...618be2) took 101ms
13:44:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7d0a97) took 60ms
13:44:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6e3f27) took 95ms
13:44:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...1bb490) took 46ms
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ccc4d8) took 429ms
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...079f6e) took 484ms
13:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...fb1ed3) took 241ms
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...bad829) took 161ms
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0f103e) took 191ms
13:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...4d3762) took 66ms
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f36975) took 109ms
13:44:59:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:44:59:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...666c06) took 66ms
13:45:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...e68f6d) took 279ms
13:45:14:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:45:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...295996) took 70ms
13:46:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...de4492) took 267ms
13:46:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...fba059) took 61ms
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c83924) took 467ms
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f410cb) took 499ms
13:46:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f63fc9) took 204ms
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...64efcb) took 198ms
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7a71cd) took 179ms
13:46:07:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:07:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...008559) took 88ms
13:46:08:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...5a75aa) took 109ms
13:46:08:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:08:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...478099) took 65ms
13:46:10:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...1b07d8) took 387ms
13:46:10:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...82401b) took 386ms
13:46:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:10:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:10:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ced073) took 176ms
13:46:10:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2ac797) took 181ms
13:46:10:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...205635) took 190ms
13:46:11:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:11:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5cb00c) took 87ms
13:46:11:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...bd1a96) took 111ms
13:46:11:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:11:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...2c3e70) took 66ms
13:46:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d08579) took 471ms
13:46:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...64e2b7) took 428ms
13:46:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...07c80b) took 92ms
13:46:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b28187) took 94ms
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...6c89e3) took 94ms
13:46:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...a7ea69) took 56ms
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0851e8) took 164ms
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...cb6cbd) took 158ms
13:46:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...88d360) took 84ms
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7db6f6) took 63ms
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...294d71) took 100ms
13:46:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...c64b34) took 76ms
13:46:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c3fcd2) took 88ms
13:46:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:46:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...e478bc) took 45ms
13:47:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...3d3282) took 343ms
13:47:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f80b32) took 64ms
13:47:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...c3f9fa) took 107ms
13:47:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...9d3709) took 63ms
13:47:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...f67e21) took 95ms
13:47:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...6b0f62) took 51ms
13:47:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0c2d96) took 97ms
13:47:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...a8b6c4) took 55ms
13:47:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...28c2fe) took 312ms
13:47:14:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:14:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...5ffd10) took 72ms
13:47:15:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...8ce407) took 127ms
13:47:15:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...632fed) took 113ms
13:47:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:15:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...8a4c06) took 67ms
13:47:16:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:16:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...f51cd5) took 67ms
13:47:16:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...87b1a5) took 111ms
13:47:16:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:16:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7c8309) took 68ms
13:47:16:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...baf97f) took 108ms
13:47:16:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:47:16:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...024ba5) took 77ms
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...bbf2c8) took 489ms
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...4fb89f) took 506ms
13:48:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b470a8) took 85ms
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...800fbc) took 93ms
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...fcd31a) took 94ms
13:48:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...1c271a) took 49ms
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...cd05eb) took 95ms
13:48:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d7d85f) took 58ms
13:48:24:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0f1cd1) took 314ms
13:48:24:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:24:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0614c9) took 158ms
13:48:24:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ee1ef3) took 163ms
13:48:24:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:24:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...7f5b16) took 67ms
13:48:24:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...8ce752) took 112ms
13:48:25:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...79e0b7) took 68ms
13:48:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ecd708) took 117ms
13:48:25:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:25:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d4f7f2) took 89ms
13:48:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...010a59) took 210ms
13:48:27:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:27:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d9ea51) took 53ms
13:48:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...01850c) took 117ms
13:48:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...dd16f3) took 142ms
13:48:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...ca9b85) took 120ms
13:48:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...00a7c7) took 65ms
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...64eeb3) took 102ms
13:48:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...554c9a) took 124ms
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...29386b) took 144ms
13:48:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...886b67) took 68ms
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...ee2154) took 99ms
13:48:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...3af9c1) took 53ms
13:48:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...208b5e) took 89ms
13:48:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:48:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...0fb209) took 52ms
13:49:15:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...195262) took 310ms
13:49:15:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:49:15:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b16ad8) took 59ms
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d36847) took 330ms
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...e97684) took 370ms
13:49:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:49:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...986db1) took 147ms
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...d6162e) took 74ms
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...b9b71a) took 117ms
13:49:33:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:49:33:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...9d5ae3) took 66ms
13:49:34:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...a43d2c) took 108ms
13:49:34:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:49:34:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...774a27) took 69ms
13:50:00:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...e89cc2) took 262ms
13:50:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...8203f2) took 55ms
13:50:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...50e85d) took 106ms
13:50:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...a5f949) took 52ms
13:50:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0a5368) took 96ms
13:50:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...9c4f28) took 56ms
13:50:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...28cf29) took 95ms
13:50:02:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:02:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...8ec6ed) took 54ms
13:50:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...790bf3) took 187ms
13:50:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...e343ef) took 128ms
13:50:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...495094) took 134ms
13:50:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...931722) took 58ms
13:50:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...1dfe31) took 103ms
13:50:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...1a10ee) took 55ms
13:50:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...be1586) took 96ms
13:50:04:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:04:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...64ca3d) took 60ms
13:50:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...aabb5d) took 383ms
13:50:28:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:28:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b43a93) took 57ms
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...151bcc) took 131ms
13:50:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...0912e4) took 146ms
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...b8ab77) took 154ms
13:50:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...fea76d) took 61ms
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d89f24) took 95ms
13:50:29:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:29:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...60718c) took 59ms
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...7e836d) took 204ms
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...525a0b) took 173ms
13:50:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...145614) took 55ms
13:50:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...c9ca13) took 59ms
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...5f8345) took 90ms
13:50:30:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:30:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...90d018) took 49ms
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...42d67e) took 389ms
13:50:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...80bdb2) took 466ms
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...753d8e) took 160ms
13:50:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...64583a) took 77ms
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...691870) took 116ms
13:50:42:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:42:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...013d4f) took 77ms
13:50:43:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...330715) took 112ms
13:50:43:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:50:43:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...56ab1c) took 64ms
13:51:50:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...535f77) took 328ms
13:51:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...644d66) took 160ms
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...056ab4) took 158ms
13:51:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...4f97c2) took 68ms
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...d300ac) took 119ms
13:51:51:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...4a3b44) took 67ms
13:51:51:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...26f025) took 114ms
13:51:52:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:51:52:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...84439d) took 63ms
13:52:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...bac647) took 255ms
13:52:01:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:52:01:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...20baf7) took 55ms
13:52:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'detect' (...8c2cc7) took 332ms
13:52:03:Object Detection (YOLOv5 6.2): Detecting using ipcam-combined
13:52:03:Object Detection (YOLOv5 6.2): Queue request for Object Detection (YOLOv5 6.2) command 'custom' (...42e1f5) took 62ms
Logging level

Info

QuestionDétection d'objets tels que des spores de champignons Pin
AchLog20-Apr-23 6:42
AchLog20-Apr-23 6:42 
AnswerRe: Détection d'objets tels que des spores de champignons Pin
Chris Maunder20-Apr-23 14:37
cofounderChris Maunder20-Apr-23 14:37 
GeneralRe: Détection d'objets tels que des spores de champignons Pin
AchLog21-Apr-23 0:26
AchLog21-Apr-23 0:26 
Question2.08 Beta - BUG - Possible Memory Leak or other fault Pin
Ghost Man Nov202220-Apr-23 12:25
Ghost Man Nov202220-Apr-23 12:25 
AnswerRe: 2.08 Beta - BUG - Possible Memory Leak or other fault Pin
Sean Ewington21-Apr-23 5:02
staffSean Ewington21-Apr-23 5:02 
GeneralRe: 2.08 Beta - BUG - Possible Memory Leak or other fault Pin
Ghost Man Nov202221-Apr-23 10:40
Ghost Man Nov202221-Apr-23 10:40 
QuestionIs Intel Neural Compute Stick 2 supported? Pin
Member 1598313819-Apr-23 3:29
Member 1598313819-Apr-23 3:29 
AnswerRe: Is Intel Neural Compute Stick 2 supported? Pin
Chris Maunder19-Apr-23 9:24
cofounderChris Maunder19-Apr-23 9:24 
QuestionHow do you install Object Detection (YOLOv5 .NET) in CodeProject 2.1.1 Pin
Member 1590747918-Apr-23 16:11
Member 1590747918-Apr-23 16:11 
AnswerRe: How do you install Object Detection (YOLOv5 .NET) in CodeProject 2.1.1 Pin
Mike Lud18-Apr-23 16:40
communityengineerMike Lud18-Apr-23 16:40 
AnswerRe: How do you install Object Detection (YOLOv5 .NET) in CodeProject 2.1.1 Pin
Chris Maunder19-Apr-23 2:28
cofounderChris Maunder19-Apr-23 2:28 
GeneralRe: How do you install Object Detection (YOLOv5 .NET) in CodeProject 2.1.1 Pin
Member 1590747919-Apr-23 11:51
Member 1590747919-Apr-23 11:51 
Questionproblem with TFlite for coral Pin
Aaron B 202218-Apr-23 12:03
Aaron B 202218-Apr-23 12:03 
AnswerRe: problem with TFlite for coral Pin
Chris Maunder18-Apr-23 15:46
cofounderChris Maunder18-Apr-23 15:46 
GeneralRe: problem with TFlite for coral Pin
Marcus Baldwin18-Apr-23 22:49
Marcus Baldwin18-Apr-23 22:49 
AnswerRe: problem with TFlite for coral Pin
Chris Maunder19-Apr-23 9:27
cofounderChris Maunder19-Apr-23 9:27 
QuestionDoes release 2.1.1 support Coral (even as a beta) Pin
PigLover6218-Apr-23 6:44
PigLover6218-Apr-23 6:44 

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

Flags: AnsweredSolved

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