Search results

  1. H

    License Plate reading image

    Your camera might have substream 2. Mine can set to 720p or 1080p on substream 2
  2. H

    BI not talking to CPAI

    You can try to load models in Camera AI tab: click the box with three dot of "Additional models" then select all models.
  3. H

    Onvif alerts not working in BI6

    It worked for me with CPAI, and 6.0.1.13: 0 1/8/2026 5:19:25.142 PM DoorBell ONVIF Event: RuleEngine/MyRuleDetector/PeopleDetect (State="true") 3 1/8/2026 5:19:25.158 PM DoorBell Trigger: ONVIF (RuleEngine/MyRuleDetector/PeopleDetect (State="true")) 9...
  4. H

    New to v6 and BI AI, need help

    You might need to have motion zone configured in "Uses zone and hot spot". Please try to check "External" box and "Motion zones" with all zones selected (can be fine tuned later) in the Alert tab. You can use Trigger now function to test if AI server receives requests (in the case of CodeProject...
  5. H

    Blue Iris Updates - Official Thread

    I'l stay with 6.0.1.12 until the bug fix. Switch to platerecognizer for LPR using car capture from BI native AI.
  6. H

    Blue Iris Updates - Official Thread

    LPR still fails on 6.0.1.12: AI inspector shows license plate detected (98%) but still in green state. 6.0.1.9 is removed from available update list. Get stuck with 6.0.1.12 for now without LPR.
  7. H

    Version 6.0.1

    Have you ever tried frigate? It works very well for me with iGPU (LPR) and pcie EdgeTPU (object detection). I have both BI on VM and Frigate on lxc running concurrently (mix of 8x 2k-4K camera) on the same machine. Performance-wise, frigate seems to be better on my setup.
  8. H

    BI6 AI mystery

    Version 6.0.1.11 should fix this issue, but Vettester mentioned LPR is not working.
  9. H

    Version 6.0.1

    Has any one upgraded BI to 6.0.1.10? It seems to force AI to all cameras and AI cannot be disabled on camera level. It is OK on previous versions. BTW, For 6.0.1.9, I got error message: Failed to load class names from: C:\BlueIris\AI\models\coco.names if I used "Trigger now" on camera to test...
  10. H

    Version 6.0.1

    Looks like CPU still carries the load instead of GPU. It is quite tricky to run BI in VM. I have 12 cores (i9-13900HX) allocated for my VM and CPU load rarely goes over 30%. Someone mentioned to lower "max connects" in main AI tab to 2-8 helped CPU load. BTW, Do you see your GPU listed in main...
  11. H

    Version 6.0.1

    My Proxmox Windows 11, RTX A2000 setup works fine with built-in AI in Blue Iris 6.0.1.9. Replies from Gemini with your error message: The DmlExec exception in Blue Iris 6.0.1.8 indicates a failure within the DirectML (DML) execution provider. This typically happens because the AI runtime...
  12. H

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    Happy New Year. Not sure if you got problem resolved. I had exactly the same issue (no trigger from CPAI, but OK manually), and got it fixed with steps below: Uninstall CPAI. Removed both CodeProject folders in “Program Files” and “ProgramData” (this folder is hidden). Reinstall CPAI with...
  13. H

    CodeProject.AI on Ubuntu

    I think 2.9.5 requires .net SDK 9.0. Please run the below to install .net SDK 9.0 before install CPAI 2.9.5: ######################### # Remove all .NET packages sudo apt-get remove 'dotnet*' sudo apt-get remove 'aspnetcore*' # Delete PMC repository from APT, by deleting the repo .list file rm...
  14. H

    CodeProject.AI on Ubuntu

    I just successfully installed 2.9.5 Ubuntu x64 today on ubuntu VM with steps below: ## Install GPU driver, toolkit, .net SDK... first before execute commands below. wget https://codeproject-ai-bunny.b-cdn.net/server/installers/linux/codeproject.ai-server_2.9.5_Ubuntu_x64.zip unzip...
  15. H

    Blue Iris and CodeProject.AI ALPR

    No luck for me to uninstall Face and YOLO Net too. Have to set AutoStart to false in modulesettings.json. I used to have CPAI and BI on Windows 11 VM on the same promox box (i9-13900HX), but inference speed of YOLO5.62 was slower. I moved CPAI to LXC container with frigate, and YOLO5v6.2 time...
  16. H

    Blue Iris and CodeProject.AI ALPR

    I have the similar issue. CPAI is installed on Promox LXC container with RTX A2000. I changed the below to force ALPR to use GPU: 1. modulesettings.json: "GpuOptions" : { "InstallGPU": true, 2. modulesettings.linux.json: "ALPR": { "GpuOptions" : { "InstallGPU"...
  17. H

    Blue Iris and CodeProject.AI ALPR

    Steps I used to install PaddlePaddle-gpu on my system (similar to instruction in the link except PaddlePaddle-gpu instead of PaddlePaddle): My CodeProject and BI are on Promox VM Windows 11. --------------------------------------------- 1. Open Command Prompt in Admin mode 2. Run the below...
  18. H

    Blue Iris and CodeProject.AI ALPR

    Have you tried Command Prompt in Admin mode?
  19. H

    Blue Iris and CodeProject.AI ALPR

    Thanks for the link. ALPR with Cuda 11.8 started OK after I installed PaddlePaddle manually per instruction. However, ALPR stuck at CPU only, and I had to as well install "pip install PaddlePaddle-gpu" to switch to GPU(CUDA).