Click here to Skip to main content
16,004,529 members
Articles / Artificial Intelligence

CodeProject.AI Server: AI the easy way.

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

Image 1

Pre-release

Quick Links

CodeProject.AI Server: An Artificial Intelligence Server

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

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

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

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

What Does It Do?

Image 11

The CodeProject.AI Server's Dashboard

Currently CodeProject.AI Server contains AI modules that provide:

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

How Do I Use It?

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

Guides, Help, FAQs

CodeProject.AI Server Home Assistant Blue Iris

Image 12

The CodeProject.AI Server's Explorer in action

Why We Built CodeProject.AI Server

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

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

    We want your contributions!

  • AI coding examples have too many moving parts

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

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

  • AI solutions often require the use of cloud services

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

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

1: Running and Playing With the Features

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

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

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

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

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

2: Running and Debugging the Code

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

3. Using CodeProject.AI Server in My Application

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

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

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

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

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

See the API documentation for a complete rundown of functionality.

Notes on the installers

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

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

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

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

Notes on CUDA and Nvidia Support

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

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

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

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

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

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

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

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

What Does It Include?

CodeProject.AI Server includes:

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

CodeProject.AI Server can currently

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

The development environment also provides modules that can

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

We will be constantly expanding the feature list.

Our Goals

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

License

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

Release Notes

What's New - 2.6

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

Previous Versions

Release 2.5

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

Release 2.4

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

Release 2.3

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

Release 2.2.0

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

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

Release 2.1.x Beta

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

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

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

Release 2.0.x Beta

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

Release 1.6.x Beta

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

Release 1.5.6.2 Beta

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

Release 1.5.6 Beta

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

Release 1.5 Beta

  • Support for custom models

Release 1.3.x Beta

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

Release 1.2.x Beta

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

Previous

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

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

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

4 members

Comments and Discussions

 
QuestionLooking for older version of Code Project for Windows 7 64 bit. Pin
BadBlake3-Aug-24 6:11
BadBlake3-Aug-24 6:11 
AnswerRe: Looking for older version of Code Project for Windows 7 64 bit. Pin
Jebus593-Aug-24 7:48
Jebus593-Aug-24 7:48 
GeneralRe: Looking for older version of Code Project for Windows 7 64 bit. Pin
BadBlake4-Aug-24 0:08
BadBlake4-Aug-24 0:08 
GeneralRe: Looking for older version of Code Project for Windows 7 64 bit. Pin
BadBlake6-Aug-24 3:38
BadBlake6-Aug-24 3:38 
Questionاكتب برنامج بلغة الجافا يقوم بجمع عددين من النوع binary - Write a program in Java that adds two numbers of type Pin
ayas saeedi1-Aug-24 18:47
ayas saeedi1-Aug-24 18:47 
AnswerRe: اكتب برنامج بلغة الجافا يقوم بجمع عددين من النوع binary - Write a program in Java that adds two numbers of type Pin
OriginalGriff1-Aug-24 18:50
mveOriginalGriff1-Aug-24 18:50 
QuestionNot a Pig or a Fox! She does like tomatoes though. Pin
NCARalph1-Aug-24 18:46
NCARalph1-Aug-24 18:46 
QuestionUnable to get a clean install of Codeproject.AI 2.6.5 using windows install Pin
Charles Azzopardi1-Aug-24 3:51
Charles Azzopardi1-Aug-24 3:51 
Hi there, I have tried several times to install 2.6.5 using the windows installer - win 11 pro 64 bit PC no GPU (each time using the uninstaller, deleting the program file and program data directories, and restarting the machine to get a clean install). Each attempt gets completed but various errors are thrown. Previous versions of CodeProject.AI installed fine so I'm not sure what's changed - the server has had a win10 to win 11 upgrade is about all. I'm using it with latest BlueIris SW. Have checked Winget seems to be available in powershell and checked no throttling entries in the registry and set UseSystemMaximum in the registry so BITS isn't supposed to restricted for downloads.

I get winget errors, BITS errors and the downloading of the models has issues so it seems to step over that and they don't get downloaded. I've manually installed .Net v8 but the installer code seems to do a check and only picks up ver 7 directory and seems to ignores the v8 directory and then tries to use winget to install it??.

I've tried various suggests in the forums for individual issues but with little progress. I have the various logs and have attached the System info Tab and server logs - hopefully these can yield some potential fixes.
------------------system Info----
Server version:   2.6.5
System:           Windows
Operating System: Windows (Microsoft Windows 11 version 10.0.22631)
CPUs:             12th Gen Intel(R) Core(TM) i7-12700 (Intel)
                  1 CPU x 12 cores. 20 logical processors (x64)
GPU (Primary):    Intel(R) UHD Graphics 770 (1,024 MiB) (Intel Corporation) 
                  Driver: 31.0.101.4577
System RAM:       32 GiB
Platform:         Windows
BuildConfig:      Release
Execution Env:    Native
Runtime Env:      Production
Runtimes installed:
  .NET runtime:     7.0.20
  .NET SDK:         Not found
  Default Python:   Not found
  Go:               Not found
  NodeJS:           Not found
  Rust:             Not found
Video adapter info:
  Intel(R) UHD Graphics 770:
    Driver Version     31.0.101.4577
    Video Processor    Intel(R) UHD Graphics Family
System GPU info:
  GPU 3D Usage       9%
  GPU RAM Usage      0
Global Environment variables:
  CPAI_APPROOTPATH = <root>
  CPAI_PORT        = 32168

-----------------------------
server logs
16:52:49:System:           Windows
16:52:49:Operating System: Windows (Microsoft Windows 11 version 10.0.22631)
16:52:49:CPUs:             12th Gen Intel(R) Core(TM) i7-12700 (Intel)
16:52:49:                  1 CPU x 12 cores. 20 logical processors (x64)
16:52:49:GPU (Primary):    Intel(R) UHD Graphics 770 (1,024 MiB) (Intel Corporation)
16:52:49:                  Driver: 31.0.101.4577
16:52:49:System RAM:       32 GiB
16:52:49:Platform:         Windows
16:52:49:BuildConfig:      Release
16:52:49:Execution Env:    Native
16:52:49:Runtime Env:      Production
16:52:49:Runtimes installed:
16:52:49:  .NET runtime:     7.0.20
16:52:49:  .NET SDK:         Not found
16:52:49:  Default Python:   Not found
16:52:49:  Go:               Not found
16:52:49:  NodeJS:           Not found
16:52:49:  Rust:             Not found
16:52:49:App DataDir:      C:\ProgramData\CodeProject\AI
16:52:49:Video adapter info:
16:52:49:  Intel(R) UHD Graphics 770:
16:52:49:    Driver Version     31.0.101.4577
16:52:49:    Video Processor    Intel(R) UHD Graphics Family
16:52:49:STARTING CODEPROJECT.AI SERVER
16:52:49:RUNTIMES_PATH             = C:\Program Files\CodeProject\AI\runtimes
16:52:49:PREINSTALLED_MODULES_PATH = C:\Program Files\CodeProject\AI\preinstalled-modules
16:52:49:DEMO_MODULES_PATH         = C:\Program Files\CodeProject\AI\src\demos\modules
16:52:49:EXTERNAL_MODULES_PATH     = 
16:52:49:MODULES_PATH              = C:\Program Files\CodeProject\AI\modules
16:52:49:PYTHON_PATH               = \bin\windows\%PYTHON_NAME%\venv\Scripts\python
16:52:49:Data Dir                  = C:\ProgramData\CodeProject\AI
16:52:49:Server version:   2.6.5
16:52:52:Setting up initial modules. Please be patient...
16:52:52:Installing initial module ObjectDetectionYOLOv5Net.
16:52:52:Preparing to install module 'ObjectDetectionYOLOv5Net'
16:52:54:Downloading module 'ObjectDetectionYOLOv5Net'
16:52:55:Installing module 'ObjectDetectionYOLOv5Net'
16:52:55:Server: This is the latest version
16:52:55:ObjectDetectionYOLOv5Net:              Installing CodeProject.AI Analysis Module                
16:52:56:ObjectDetectionYOLOv5Net: ======================================================================
16:52:56:ObjectDetectionYOLOv5Net:                    CodeProject.AI Installer                           
16:52:56:ObjectDetectionYOLOv5Net: ======================================================================
16:52:56:ObjectDetectionYOLOv5Net: 870.6Gb of 953Gb available on 
16:52:56:ObjectDetectionYOLOv5Net: General CodeProject.AI setup                                          
16:52:56:ObjectDetectionYOLOv5Net: Creating Directories...done
16:52:56:ObjectDetectionYOLOv5Net: GPU support                                                           
16:52:56:ObjectDetectionYOLOv5Net: CUDA Present...No
16:52:56:ObjectDetectionYOLOv5Net: ROCm Present...No
16:52:56:ObjectDetectionYOLOv5Net: Checking for .NET 7.0...Checking SDKs...Upgrading: .NET is 0
16:52:56:ObjectDetectionYOLOv5Net: Current version is 0. Installing newer version.
16:52:56:ObjectDetectionYOLOv5Net: 'winget' is not recognized as an internal or external command,
16:52:56:ObjectDetectionYOLOv5Net: operable program or batch file.
16:52:58:ObjectDetectionYOLOv5Net: Reading ObjectDetectionYOLOv5Net settings.......done
16:52:58:ObjectDetectionYOLOv5Net: Installing module Object Detection (YOLOv5 .NET) 1.10.2               
16:55:57:ObjectDetectionYOLOv5Net: Downloading ObjectDetectionYOLOv5Net-DirectML-1.10.2.zip...Expanding...done.
16:55:57:ObjectDetectionYOLOv5Net: Copying contents of ObjectDetectionYOLOv5Net-DirectML-1.10.2.zip to bin...done
17:05:40:ObjectDetectionYOLOv5Net: Downloading YOLO ONNX models...Expanding...done.
17:05:40:ObjectDetectionYOLOv5Net: Copying contents of yolonet-models.zip to assets...done
17:10:31:ObjectDetectionYOLOv5Net: Downloading Custom YOLO ONNX models...Expanding...done.
17:10:31:ObjectDetectionYOLOv5Net: Copying contents of yolonet-custom-models.zip to custom-models...done
17:10:31:ObjectDetectionYOLOv5Net: Scanning modulesettings for downloadable models...No models specified
17:10:33:ObjectDetectionYOLOv5Net: Self test: Self-test passed
17:10:33:ObjectDetectionYOLOv5Net: Module setup time 00:17:36.63
17:10:33:ObjectDetectionYOLOv5Net: Setup complete                                                        
17:10:33:ObjectDetectionYOLOv5Net: Total setup time 00:17:37.20
17:10:33:Module ObjectDetectionYOLOv5Net installed successfully.
17:10:33:Module ObjectDetectionYOLOv5Net not configured to AutoStart.
17:10:33:Installer exited with code 0
17:10:33:Installing initial module ObjectDetectionYOLOv5-6.2.
17:10:33:Preparing to install module 'ObjectDetectionYOLOv5-6.2'
17:10:33:Downloading module 'ObjectDetectionYOLOv5-6.2'
17:10:35:Installing module 'ObjectDetectionYOLOv5-6.2'
17:10:35:ObjectDetectionYOLOv5-6.2:              Installing CodeProject.AI Analysis Module                
17:10:35:ObjectDetectionYOLOv5-6.2: ======================================================================
17:10:35:ObjectDetectionYOLOv5-6.2:                    CodeProject.AI Installer                           
17:10:35:ObjectDetectionYOLOv5-6.2: ======================================================================
17:10:35:ObjectDetectionYOLOv5-6.2: 869.6Gb of 953Gb available on 
17:10:35:ObjectDetectionYOLOv5-6.2: General CodeProject.AI setup                                          
17:10:35:ObjectDetectionYOLOv5-6.2: Creating Directories...done
17:10:35:ObjectDetectionYOLOv5-6.2: GPU support                                                           
17:10:35:ObjectDetectionYOLOv5-6.2: CUDA Present...No
17:10:35:ObjectDetectionYOLOv5-6.2: ROCm Present...No
17:10:35:ObjectDetectionYOLOv5-6.2: Checking for .NET 7.0...Checking SDKs...Upgrading: .NET is 0
17:10:35:ObjectDetectionYOLOv5-6.2: Current version is 0. Installing newer version.
17:10:35:ObjectDetectionYOLOv5-6.2: 'winget' is not recognized as an internal or external command,
17:10:35:ObjectDetectionYOLOv5-6.2: operable program or batch file.
17:10:37:ObjectDetectionYOLOv5-6.2: Reading ObjectDetectionYOLOv5-6.2 settings.......done
17:10:37:ObjectDetectionYOLOv5-6.2: Installing module Object Detection (YOLOv5 6.2) 1.9.2                 
17:10:37:ObjectDetectionYOLOv5-6.2: Installing Python 3.7
17:11:12:ObjectDetectionYOLOv5-6.2: Downloading Python 3.7 interpreter...Expanding...done.
17:11:17:ObjectDetectionYOLOv5-6.2: Creating Virtual Environment (Shared)...done
17:11:17:ObjectDetectionYOLOv5-6.2: Confirming we have Python 3.7 in our virtual environment...present
17:17:38:ObjectDetectionYOLOv5-6.2: Downloading Standard YOLO models...Expanding...done.
17:17:38:ObjectDetectionYOLOv5-6.2: Copying contents of models-yolo5-pt.zip to assets...done
17:45:13:ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : There are currently no active network connections. Background Intelligent Transfer Service (BITS) 
17:45:13:ObjectDetectionYOLOv5-6.2: will try again when an adapter is connected.
17:45:13:ObjectDetectionYOLOv5-6.2: At line:1 char:1
17:45:13:ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
17:45:13:ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17:45:13:ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exception
17:45:13:ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits 
17:45:13:ObjectDetectionYOLOv5-6.2:    TransferCommand
17:45:14:ObjectDetectionYOLOv5-6.2: Start-BitsTransfer : There are currently no active network connections. Background Intelligent Transfer Service (BITS) 
17:45:14:ObjectDetectionYOLOv5-6.2: will try again when an adapter is connected.
17:45:14:ObjectDetectionYOLOv5-6.2: At line:1 char:1
17:45:14:ObjectDetectionYOLOv5-6.2: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
17:45:14:ObjectDetectionYOLOv5-6.2: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17:45:14:ObjectDetectionYOLOv5-6.2:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exception
17:45:14:ObjectDetectionYOLOv5-6.2:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits 
17:45:14:ObjectDetectionYOLOv5-6.2:    TransferCommand
17:45:14:ObjectDetectionYOLOv5-6.2: Downloading Custom YOLO models...BITS transfer failed. Trying Powershell....
17:54:23:ObjectDetectionYOLOv5-6.2: Expanding...done.
17:54:23:ObjectDetectionYOLOv5-6.2: Copying contents of custom-models-yolo5-pt.zip to custom-models...done
17:54:23:ObjectDetectionYOLOv5-6.2: Installing Python packages for Object Detection (YOLOv5 6.2)
17:54:23:ObjectDetectionYOLOv5-6.2: nstalling GPU-enabled libraries: If available
17:54:24:ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is installed...done
17:54:28:ObjectDetectionYOLOv5-6.2: Ensuring Python package manager (pip) is up to date...done
17:54:28:ObjectDetectionYOLOv5-6.2: Python packages specified by requirements.txt
17:54:29:ObjectDetectionYOLOv5-6.2:   - Installing urllib3, the HTTP client for Python...(✅ checked) done
17:54:31:Module ObjectDetectionYOLOv5-6.2 installed successfully.
17:54:31:ObjectDetectionYOLOv5-6.2:   - Installing Pandas, a data analysis / data manipulation tool...
17:54:31:
17:54:31:Module 'Object Detection (YOLOv5 6.2)' 1.9.2 (ID: ObjectDetectionYOLOv5-6.2)
17:54:31:Valid:            True
17:54:31:Module Path:      <root>\modules\ObjectDetectionYOLOv5-6.2
17:54:31:Module Location:  Internal
17:54:31:AutoStart:        True
17:54:31:Queue:            objectdetection_queue
17:54:31:Runtime:          python3.7
17:54:31:Runtime Location: Shared
17:54:31:FilePath:         detect_adapter.py
17:54:31:Start pause:      1 sec
17:54:31:Parallelism:      0
17:54:31:LogVerbosity:
17:54:31:Platforms:        all,!raspberrypi,!jetson
17:54:31:GPU Libraries:    installed if available
17:54:31:GPU:              use if supported
17:54:31:Accelerator:
17:54:31:Half Precision:   enable
17:54:31:Environment Variables
17:54:31:APPDIR             = <root>\modules\ObjectDetectionYOLOv5-6.2
17:54:31:CUSTOM_MODELS_DIR  = <root>\modules\ObjectDetectionYOLOv5-6.2\custom-models
17:54:31:MODELS_DIR         = <root>\modules\ObjectDetectionYOLOv5-6.2\assets
17:54:31:MODEL_SIZE         = Medium
17:54:31:USE_CUDA           = True
17:54:31:YOLOv5_AUTOINSTALL = false
17:54:31:YOLOv5_VERBOSE     = false
17:54:31:
17:54:31:Started Object Detection (YOLOv5 6.2) module
17:54:31:Unable to install ObjectDetectionYOLOv5-6.2: Timed out attempting to install Module 'ObjectDetectionYOLOv5-6.2' (A task was canceled.)
17:54:31:Installing initial module FaceProcessing.
17:54:31:Preparing to install module 'FaceProcessing'
17:54:31:Downloading module 'FaceProcessing'
17:54:31:detect_adapter.py: Traceback (most recent call last):
17:54:31:detect_adapter.py:   File "C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5-6.2\detect_adapter.py", line 19, in 
17:54:31:detect_adapter.py:     from codeproject_ai_sdk import JSON, ModuleRunner, LogMethod, LogVerbosity, RequestData
17:54:31:detect_adapter.py: ModuleNotFoundError: No module named 'codeproject_ai_sdk'
17:54:31:Module ObjectDetectionYOLOv5-6.2 has shutdown
17:54:31:detect_adapter.py: has exited
17:54:32:Module ObjectDetectionYOLOv5-6.2 started successfully.
17:54:32:Installing module 'FaceProcessing'
17:54:32:FaceProcessing:              Installing CodeProject.AI Analysis Module                
17:54:32:FaceProcessing: ======================================================================
17:54:32:FaceProcessing:                    CodeProject.AI Installer                           
17:54:32:FaceProcessing: ======================================================================
17:54:32:FaceProcessing: 868.3Gb of 953Gb available on 
17:54:32:FaceProcessing: General CodeProject.AI setup                                          
17:54:32:FaceProcessing: Creating Directories...done
17:54:32:FaceProcessing: GPU support                                                           
17:54:32:FaceProcessing: CUDA Present...No
17:54:32:FaceProcessing: ROCm Present...No
17:54:32:FaceProcessing: Checking for .NET 7.0...Checking SDKs...Upgrading: .NET is 0
17:54:32:FaceProcessing: Current version is 0. Installing newer version.
17:54:32:FaceProcessing: 'winget' is not recognized as an internal or external command,
17:54:32:FaceProcessing: operable program or batch file.
17:54:34:FaceProcessing: Reading FaceProcessing settings.......done
17:54:34:FaceProcessing: Installing module Face Processing 1.11.0                              
17:54:34:FaceProcessing: Installing Python 3.7
17:54:34:FaceProcessing: Python 3.7 is already installed
17:54:34:FaceProcessing: Creating Virtual Environment (Shared)...Virtual Environment already present
17:54:34:FaceProcessing: Confirming we have Python 3.7 in our virtual environment...present
21:51:26:FaceProcessing: Start-BitsTransfer : There are currently no active network connections. Background Intelligent Transfer Service (BITS) 
21:51:26:FaceProcessing: will try again when an adapter is connected.
21:51:26:FaceProcessing: At line:1 char:1
21:51:26:FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
21:51:26:FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21:51:26:FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exception
21:51:26:FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits 
21:51:26:FaceProcessing:    TransferCommand
21:51:26:FaceProcessing: Start-BitsTransfer : There are currently no active network connections. Background Intelligent Transfer Service (BITS) 
21:51:26:FaceProcessing: will try again when an adapter is connected.
21:51:26:FaceProcessing: At line:1 char:1
21:51:26:FaceProcessing: + Start-BitsTransfer -Source 'https://codeproject-ai.s3.ca-central-1.am ...
21:51:26:FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21:51:26:FaceProcessing:     + CategoryInfo          : InvalidOperation: (:) [Start-BitsTransfer], Exception
21:51:26:FaceProcessing:     + FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits 
21:51:26:FaceProcessing:    TransferCommand
21:51:26:FaceProcessing: Downloading Face models...BITS transfer failed. Trying Powershell....
21:51:26:FaceProcessing: Invoke-WebRequest : The remote name could not be resolved: 'codeproject-ai.s3.ca-central-1.amazonaws.com'
21:51:26:FaceProcessing: At line:1 char:1
21:51:26:FaceProcessing: + Invoke-WebRequest 'https://codeproject-ai.s3.ca-central-1.amazonaws.c ...
21:51:26:FaceProcessing: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21:51:26:FaceProcessing:     + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebExc 
21:51:26:FaceProcessing:    eption
21:51:26:FaceProcessing:     + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand
21:51:26:FaceProcessing: Download failed. Sorry.
21:51:26:FaceProcessing: Failed to download and extract models-face-pt.zip
21:51:27:FaceProcessing: Installing Python packages for Face Processing
21:51:27:FaceProcessing: nstalling GPU-enabled libraries: If available
21:51:27:FaceProcessing: Ensuring Python package manager (pip) is installed...done
21:51:36:FaceProcessing: Ensuring Python package manager (pip) is up to date...done
21:51:36:FaceProcessing: Python packages specified by requirements.txt
21:51:36:FaceProcessing:   - Installing urllib3, the HTTP client for Python...Already installed
21:51:45:FaceProcessing:   - Installing Pandas, a data analysis / data manipulation tool...(✅ checked) done
21:52:03:FaceProcessing:   - Installing CoreMLTools, for working with .mlmodel format models...(✅ checked) done
21:52:07:FaceProcessing:   - Installing OpenCV, the Open source Computer Vision library...(✅ checked) done
21:52:09:FaceProcessing:   - Installing Pillow, a Python Image Library...(✅ checked) done
21:52:16:FaceProcessing:   - Installing SciPy, a library for mathematics, science, and engineering...(✅ checked) done
21:52:17:FaceProcessing:   - Installing PyYAML, a library for reading configuration files...Already installed
21:52:41:FaceProcessing:   - Installing PyTorch, for Tensor computation and Deep neural networks...(✅ checked) done
21:53:14:FaceProcessing:   - Installing TorchVision, for Computer Vision based AI...(✅ checked) done
21:53:31:FaceProcessing:   - Installing Seaborn, a data visualization library based on matplotlib...(✅ checked) done
21:53:39:FaceProcessing:   - Installing the CodeProject.AI SDK...(✅ checked) done
21:53:39:FaceProcessing: Installing Python packages for the CodeProject.AI Server SDK
21:53:40:FaceProcessing: Ensuring Python package manager (pip) is installed...done
21:53:41:FaceProcessing: Ensuring Python package manager (pip) is up to date...done
21:53:41:FaceProcessing: Python packages specified by requirements.txt
21:53:42:FaceProcessing:   - Installing Pillow, a Python Image Library...Already installed
21:53:42:FaceProcessing:   - Installing Charset normalizer...Already installed
21:53:43:FaceProcessing:   - Installing aiohttp, the Async IO HTTP library...Already installed
21:53:43:FaceProcessing:   - Installing aiofiles, the Async IO Files library...Already installed
21:53:44:FaceProcessing:   - Installing py-cpuinfo to allow us to query CPU info...Already installed
21:53:45:FaceProcessing:   - Installing Requests, the HTTP library...Already installed
21:53:45:FaceProcessing: Scanning modulesettings for downloadable models...No models specified
21:53:54:FaceProcessing: Self test: Self-test passed
21:53:54:FaceProcessing: Module setup time 03:59:21.90
21:53:54:FaceProcessing: Setup complete                                                        
21:53:55:FaceProcessing: Total setup time 03:59:22.43
21:53:55:Module FaceProcessing installed successfully.
21:53:55:
21:53:55:Module 'Face Processing' 1.11.0 (ID: FaceProcessing)
21:53:55:Valid:            True
21:53:55:Module Path:      <root>\modules\FaceProcessing
21:53:55:Module Location:  Internal
21:53:55:AutoStart:        True
21:53:55:Queue:            faceprocessing_queue
21:53:55:Runtime:          python3.7
21:53:55:Runtime Location: Shared
21:53:55:FilePath:         intelligencelayer\face.py
21:53:55:Start pause:      3 sec
21:53:55:Parallelism:      0
21:53:55:LogVerbosity:
21:53:55:Platforms:        all,!jetson
21:53:55:GPU Libraries:    installed if available
21:53:55:GPU:              use if supported
21:53:55:Accelerator:
21:53:55:Half Precision:   enable
21:53:55:Environment Variables
21:53:55:APPDIR             = <root>\modules\FaceProcessing\intelligencelayer
21:53:55:DATA_DIR           = C:\ProgramData\CodeProject\AI
21:53:55:MODE               = MEDIUM
21:53:55:MODELS_DIR         = <root>\modules\FaceProcessing\assets
21:53:55:PROFILE            = desktop_gpu
21:53:55:USE_CUDA           = True
21:53:55:YOLOv5_AUTOINSTALL = false
21:53:55:YOLOv5_VERBOSE     = false
21:53:55:
21:53:55:Started Face Processing module
21:53:55:Installer exited with code 0
21:53:58:Module FaceProcessing started successfully.
21:59:17:Update ObjectDetectionYOLOv5-6.2. Setting AutoStart=false
21:59:17:Stopping Object Detection (YOLOv5 6.2)
21:59:24:Update ObjectDetectionYOLOv5Net. Setting AutoStart=true
21:59:24:Restarting Object Detection (YOLOv5 .NET) to apply settings change
21:59:24:
21:59:24:Module 'Object Detection (YOLOv5 .NET)' 1.10.2 (ID: ObjectDetectionYOLOv5Net)
21:59:24:Valid:            True
21:59:24:Module Path:      <root>\modules\ObjectDetectionYOLOv5Net
21:59:24:Module Location:  Internal
21:59:24:AutoStart:        True
21:59:24:Queue:            objectdetection_queue
21:59:24:Runtime:          dotnet
21:59:24:Runtime Location: System
21:59:24:FilePath:         bin\ObjectDetectionYOLOv5Net.exe
21:59:24:Start pause:      1 sec
21:59:24:Parallelism:      0
21:59:24:LogVerbosity:
21:59:24:Platforms:        all,!windows-arm64
21:59:24:GPU Libraries:    installed if available
21:59:24:GPU:              use if supported
21:59:24:Accelerator:
21:59:24:Half Precision:   enable
21:59:24:Environment Variables
21:59:24:CUSTOM_MODELS_DIR = <root>\modules\ObjectDetectionYOLOv5Net\custom-models
21:59:24:MODELS_DIR        = <root>\modules\ObjectDetectionYOLOv5Net\assets
21:59:24:MODEL_SIZE        = MEDIUM
21:59:24:
21:59:24:Started Object Detection (YOLOv5 .NET) module
22:00:29:Sending shutdown request to python/FaceProcessing
22:00:37:ObjectDetectionYOLOv5Net.exe:       Application started. Press Ctrl+C to shut down.
22:00:37:ObjectDetectionYOLOv5Net.exe:       Hosting environment: Production
22:00:37:ObjectDetectionYOLOv5Net.exe:       Content root path: C:\Program Files\CodeProject\AI\modules\ObjectDetectionYOLOv5Net
22:00:38:Object Detection (YOLOv5 .NET): Object Detection (YOLOv5 .NET) module started.
22:00:39:face.py: Face Processing started.
22:00:39:Module FaceProcessing has shutdown
22:00:39:face.py: has exited
22:01:02:FaceProcessing went quietly

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

thanks charlie
AnswerRe: Unable to get a clean install of Codeproject.AI 2.6.5 using windows install Pin
Sean Ewington2-Aug-24 8:23
staffSean Ewington2-Aug-24 8:23 
GeneralRe: Unable to get a clean install of Codeproject.AI 2.6.5 using windows install Pin
Charles Azzopardi2-Aug-24 20:54
Charles Azzopardi2-Aug-24 20:54 
QuestionCoral keeps falling back to single TPU Pin
DeadpoolW30-Jul-24 6:20
DeadpoolW30-Jul-24 6:20 
AnswerRe: Coral keeps falling back to single TPU Pin
DeadpoolW7-Aug-24 0:08
DeadpoolW7-Aug-24 0:08 
GeneralRe: Coral keeps falling back to single TPU Pin
DeadpoolW8-Aug-24 1:04
DeadpoolW8-Aug-24 1:04 
GeneralRe: Coral keeps falling back to single TPU Pin
markmghali14-Aug-24 6:22
markmghali14-Aug-24 6:22 
GeneralRe: Coral keeps falling back to single TPU Pin
seashellz5911-Sep-24 7:55
seashellz5911-Sep-24 7:55 
QuestionCan't get Coral USB to work Pin
Kevin Key29-Jul-24 17:27
Kevin Key29-Jul-24 17:27 
AnswerRe: Can't get Coral USB to work Pin
Sean Ewington31-Jul-24 2:34
staffSean Ewington31-Jul-24 2:34 
QuestionTrain or configure a custom model to detect objects Pin
Gianfranco Tonti25-Jul-24 12:41
Gianfranco Tonti25-Jul-24 12:41 
QuestionCodeproject AI log seems to stop Pin
NCARalph24-Jul-24 8:51
NCARalph24-Jul-24 8:51 
AnswerRe: Codeproject AI log seems to stop Pin
Sean Ewington31-Jul-24 4:29
staffSean Ewington31-Jul-24 4:29 
GeneralRe: Codeproject AI log seems to stop Pin
NCARalph1-Aug-24 8:52
NCARalph1-Aug-24 8:52 
GeneralRe: Codeproject AI log seems to stop Pin
Sean Ewington2-Aug-24 6:52
staffSean Ewington2-Aug-24 6:52 
QuestionUnable to Download Codeproject.AI windows installer. Pin
Member 1631252620-Jul-24 19:43
Member 1631252620-Jul-24 19:43 
AnswerRe: Unable to Download Codeproject.AI windows installer. Pin
Member 1009447722-Jul-24 18:32
Member 1009447722-Jul-24 18:32 
QuestionCPAI ver 2.6.5 CPAI Server service starts, but ObjectDetectionYOLOv5Net module stops when Blue Iris starts Pin
Steve Winn18-Jul-24 6:59
Steve Winn18-Jul-24 6:59 

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

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