Skip to content

Commit ba5538f

Browse files
author
ChrisMaunder
committed
v1.5.6: nVidia GPU support! Complete rework of the Python SDK for modules, revamped dev installer
1 parent 722a07c commit ba5538f

File tree

290 files changed

+17629
-7676
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+17629
-7676
lines changed

.gitignore

Lines changed: 11 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,16 @@
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

66
/demos/Python/detected
7+
/docs/mkdocs/CodeProject.AI/site
8+
/Installers/downloads
9+
/Installers/Windows/Thumbs.db
710

8-
/install/downloads/models
9-
/install/downloads/assets
10-
/install/downloads/python37
11-
/install/cached_downloads
12-
/install/downloads/python_packages_cpu
13-
/install/downloads/python_packages_gpu
14-
15-
/src/CodeProject.SenseAI.config
16-
/src/set_environment.bat
17-
/src/Start_SenseAI_Win.bat
11+
/src/AnalysisLayer/BackgroundRemover/models
12+
/src/AnalysisLayer/CustomDetection/assets
13+
/src/AnalysisLayer/ObjectDetectionNet/assets/
14+
/src/AnalysisLayer/Vision/assets
1815

19-
/src/AnalysisLayer/DeepStack/venv
20-
/src/AnalysisLayer/DeepStack/datastore
21-
/src/AnalysisLayer/DeepStack/tempstore
22-
/src/AnalysisLayer/DeepStack/assets
16+
/src/API/Server/FrontEnd/installconfig.json
2317

2418
# User-specific files
2519
*.rsuser
@@ -377,31 +371,7 @@ MigrationBackup/
377371

378372
# Fody - auto-generated XML schema
379373
FodyWeavers.xsd
380-
/src/AnalysisLayer/DeepStack/python37
381-
/Start_SenseAI_Win.bat
382-
/set_environment.bat
383-
/CodeProject.SenseAI.config
384-
/CodeProject.SenseAI.json
385-
/src/API/Server/FrontEnd/installconfig.json
386-
/install/downloads/yoloModels
387-
/src/AnalysisLayer/CodeProject.SenseAI.AnalysisLayer.Yolo/assets/weights
388-
/src/AnalysisLayer/CodeProject.SenseAI.AnalysisLayer.Yolo/assets/yolov5s.onnx
389-
/src/AnalysisLayer/CodeProject.SenseAI.AnalysisLayer.Yolo/assets/yolov5n.onnx
390-
/src/AnalysisLayer/CodeProject.SenseAI.AnalysisLayer.Yolo/assets/yolov5m.onnx
391-
/Installers/downloads
374+
375+
392376
*.DS_Store
393-
/src/AnalysisLayer/BackgroundRemover/models
394-
/docs/mkdocs/senseAI/site
395-
/src/AnalysisLayer/Vision/assets
396-
/src/AnalysisLayer/CustomDetection/assets/openlogo.pt
397-
/src/AnalysisLayer/CustomDetection/assets/actionnetv2.pt
398-
/src/AnalysisLayer/CustomDetection/assets/license-plate.pt
399-
/src/AnalysisLayer/CustomDetection/assets/yolov5m.pt
400-
/docs/mkdocs/CodeProject.AI/site
401-
/Installers/Windows/Thumbs.db
402-
/src/AnalysisLayer/CodeProject.AI.AnalysisLayer.Yolo/assets
403-
/src/AnalysisLayer/CustomDetection/assets/IPcam-general.pt
404-
/src/AnalysisLayer/CustomDetection/assets/IPcam-dark.pt
405-
/src/AnalysisLayer/CustomDetection/assets/IPcam-combined.pt
406-
/src/AnalysisLayer/CustomDetection/assets/IPcam-animal.pt
407-
/src/AnalysisLayer/Vision/datastore
377+

CodeProject.AI.sln

Lines changed: 299 additions & 49 deletions
Large diffs are not rendered by default.

Installers/Dev/clean.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ if /i "%cleanBuild%" == "true" (
5454
call utils.bat WriteLine
5555

5656
call :CleanSubDirs ".\..\..\src" "bin" "AnalysisLayer\bin"
57-
call :CleanSubDirs ".\..\..\src" "obj" "AnalysisLayer\bin"
57+
call :CleanSubDirs ".\..\..\src" "obj" "ObjectDetectionNet"
5858
call :CleanSubDirs ".\..\Windows" "bin"
5959
call :CleanSubDirs ".\..\Windows" "obj"
6060
call :CleanSubDirs ".\..\..\demos" "bin"
61-
call :CleanSubDirs ".\..\..\demos" "obj"
61+
call :CleanSubDirs ".\..\..\demos" "obj" "Objects"
6262
call :CleanSubDirs ".\..\..\tests" "bin"
6363
call :CleanSubDirs ".\..\..\tests" "obj"
6464
)
@@ -69,9 +69,9 @@ if /i "%cleanInstallLocal%" == "true" (
6969
call utils.bat WriteLine "Cleaning Windows Install " "White" "Blue"
7070
call utils.bat WriteLine
7171

72-
call :CleanSubDirs "..\..\src\AnalysisLayer\bin" "windows" "linux"
72+
call :CleanSubDirs "..\..\src\AnalysisLayer\bin" "windows"
7373
call :CleanSubDirs "..\..\src\AnalysisLayer\BackgroundRemover" "models"
74-
call :CleanSubDirs "..\..\src\AnalysisLayer\CodeProject.AI.AnalysisLayer.Yolo" "assets"
74+
call :CleanSubDirs "..\..\src\AnalysisLayer\ObjectDetectionNet" "assets"
7575
call :CleanSubDirs "..\..\src\AnalysisLayer\Vision" "assets"
7676
call :CleanSubDirs "..\..\src\AnalysisLayer\Vision" "datastore"
7777
call :CleanSubDirs "..\..\src\AnalysisLayer\Vision" "tempstore"

Installers/Dev/clean.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ if [ "$cleanBuild" == "true" ]; then
116116
writeLine "Cleaning Build " "White" "Blue"
117117
writeLine
118118

119-
cleanSubDirs "../../src" "bin" "./AnalysisLayer/bin"
120-
cleanSubDirs "../../src" "obj" "./AnalysisLayer/bin"
119+
cleanSubDirs "../../src" "bin" "AnalysisLayer/bin"
120+
cleanSubDirs "../../src" "obj" "ObjectDetectionNet"
121121
cleanSubDirs "../Windows" "bin"
122122
cleanSubDirs "../Windows" "obj"
123123
cleanSubDirs "../../demos" "bin"
124-
cleanSubDirs "../../demos" "obj"
124+
cleanSubDirs "../../demos" "obj" "Objects"
125125
cleanSubDirs "../../tests" "bin"
126126
cleanSubDirs "../../tests" "obj"
127127
fi
@@ -134,7 +134,7 @@ if [ "$cleanInstallLocal" == "true" ]; then
134134

135135
cleanSubDirs "../../src/AnalysisLayer/bin" "${platform}"
136136
cleanSubDirs "../../src/AnalysisLayer/BackgroundRemover" "models"
137-
cleanSubDirs "../../src/AnalysisLayer/CodeProject.AI.AnalysisLayer.Yolo" "assets"
137+
cleanSubDirs "../../src/AnalysisLayer/ObjectDetectionNet" "assets"
138138
cleanSubDirs "../../src/AnalysisLayer/Vision" "assets"
139139
cleanSubDirs "../../src/AnalysisLayer/Vision" "datastore"
140140
cleanSubDirs "../../src/AnalysisLayer/Vision" "tempstore"
@@ -143,7 +143,7 @@ fi
143143
if [ "$cleanInstallAll" == "true" ]; then
144144

145145
writeLine
146-
writeLine "Cleaning install for other platforms " "White" "Blue"
146+
writeLine "Cleaning install for all platforms " "White" "Blue"
147147
writeLine
148148

149149
cleanSubDirs "../../src/AnalysisLayer" "bin"

0 commit comments

Comments
 (0)