Skip to content

Commit 41edaaf

Browse files
author
ChrisMaunder
committed
Updated to v2.1.12
1 parent 49c7f1a commit 41edaaf

File tree

357 files changed

+13348
-4414
lines changed

Some content is hidden

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

357 files changed

+13348
-4414
lines changed

.gitignore

Lines changed: 51 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5-
61
# User-specific files
72
*.rsuser
83
*.suo
@@ -33,7 +28,7 @@ bld/
3328
[Ll]og/
3429
[Ll]ogs/
3530

36-
# Visual Studio 2015/2017 cache/options directory
31+
# Visual Studio cache/options directory
3732
.vs/
3833
# Uncomment if you have tasks that create the project's static files in wwwroot
3934
#wwwroot/
@@ -121,12 +116,6 @@ ipch/
121116
# Visual Studio Trace Files
122117
*.e2e
123118

124-
# TFS 2012 Local Workspace
125-
$tf/
126-
127-
# Guidance Automation Toolkit
128-
*.gpState
129-
130119
# ReSharper is a .NET coding add-in
131120
_ReSharper*/
132121
*.[Rr]e[Ss]harper
@@ -246,9 +235,6 @@ orleans.codegen.cs
246235
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
247236
#bower_components/
248237

249-
# RIA/Silverlight projects
250-
Generated_Code/
251-
252238
# Backup & report files from converting an old project file
253239
# to a newer Visual Studio version. Backup files are not needed,
254240
# because we have git ;-)
@@ -259,11 +245,6 @@ UpgradeLog*.htm
259245
ServiceFabricBackup/
260246
*.rptproj.bak
261247

262-
# SQL Server files
263-
*.mdf
264-
*.ldf
265-
*.ndf
266-
267248
# Business Intelligence projects
268249
*.rdl.data
269250
*.bim.layout
@@ -286,53 +267,16 @@ node_modules/
286267
# Visual Studio 6 build log
287268
*.plg
288269

289-
# Visual Studio 6 workspace options file
290-
*.opt
291-
292-
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
293-
*.vbw
294-
295-
# Visual Studio LightSwitch build output
296-
**/*.HTMLClient/GeneratedArtifacts
297-
**/*.DesktopClient/GeneratedArtifacts
298-
**/*.DesktopClient/ModelManifest.xml
299-
**/*.Server/GeneratedArtifacts
300-
**/*.Server/ModelManifest.xml
301-
_Pvt_Extensions
302-
303-
# Paket dependency manager
304-
.paket/paket.exe
305-
paket-files/
306-
307-
# FAKE - F# Make
308-
.fake/
309-
310270
# CodeRush personal settings
311271
.cr/personal
312272

313273
# Python Tools for Visual Studio (PTVS)
314274
__pycache__/
315275
*.pyc
316276

317-
# Cake - Uncomment if you are using it
318-
# tools/**
319-
# !tools/packages.config
320-
321-
# Tabs Studio
322-
*.tss
323-
324277
# Telerik's JustMock configuration file
325278
*.jmconfig
326279

327-
# BizTalk build output
328-
*.btp.cs
329-
*.btm.cs
330-
*.odx.cs
331-
*.xsd.cs
332-
333-
# OpenCover UI analysis results
334-
OpenCover/
335-
336280
# Azure Stream Analytics local run output
337281
ASALocalRun/
338282

@@ -342,24 +286,12 @@ ASALocalRun/
342286
# NVidia Nsight GPU debugger configuration file
343287
*.nvuser
344288

345-
# MFractors (Xamarin productivity tool) working folder
346-
.mfractor/
347-
348289
# Local History for Visual Studio
349290
.localhistory/
350291

351-
# BeatPulse healthcheck temp database
352-
healthchecksdb
353-
354292
# Backup folder for Package Reference Convert tool in Visual Studio 2017
355293
MigrationBackup/
356294

357-
# Ionide (cross platform F# VS Code tools) working folder
358-
.ionide/
359-
360-
# Fody - auto-generated XML schema
361-
FodyWeavers.xsd
362-
363295
# Heat Generated Wix files.
364296
**/*Files.wxs
365297

@@ -382,33 +314,70 @@ FodyWeavers.xsd
382314
/Installers/Windows/PortraitFilter.Installer/PortraitFilterInstallFiles.wxs
383315
/Installers/Windows/CodeProjectAI.Server.Installer/DemoImangesFiles.wxs
384316
/Installers/Windows/Python39.Installer/Python39Files.wxs
317+
/Installers/Windows/YoloNet.Installer/YoloNetInstallFiles.wxs
385318

386319
/Installers/zlib123dllx64.zip
387320
/Installers/cudnn-windows-x86_64-8.5.0.96_cuda11-archive.zip
388321

389322
/src/API/Server/FrontEnd/installconfig.json
323+
/src/API/Server/FrontEnd/modules.json
390324

391-
/src/AnalysisLayer/FaceProcessing/assets
392-
/src/AnalysisLayer/FaceProcessing/datastore/
393-
/src/AnalysisLayer/ObjectDetectionNet/assets/
394-
/src/AnalysisLayer/ObjectDetectionNet/custom-models
395-
/src/AnalysisLayer/ObjectDetectionYolo/assets
396-
/src/AnalysisLayer/ObjectDetectionYolo/custom-models
397-
398-
/src/downloads/
399-
/src/module-downloads/
400-
/src/modules/downloads/
325+
# keep the folder structure but don't git commit the cached downloads
326+
!/src/downloads
327+
/src/downloads/*
328+
!/src/downloads/modules
329+
/src/downloads/modules/*
330+
!/src/downloads/modules/readme.txt
401331

332+
# Downloaded assets for modules
402333
/src/modules/ALPR/paddleocr
403334
/src/modules/ALPR/plate.png
404335
/src/modules/BackgroundRemover/models
336+
/src/modules/Cartooniser/weights
337+
/src/modules/FaceProcessing/assets
338+
/src/modules/FaceProcessing/datastore/
339+
/src/modules/ObjectDetectionCoral/assets
340+
src/modules/ObjectDetectionCoral/edgetpu_runtime
341+
src/modules/ObjectDetectionCoral/libedgetpu.*
342+
/src/modules/ObjectDetectionNet/assets/
343+
/src/modules/ObjectDetectionNet/custom-models
344+
/src/modules/ObjectDetectionNet/LocalNugets
345+
src/modules/ObjectDetectionYoloRKNN/assets
346+
src/modules/ObjectDetectionYoloRKNN/custom-models
347+
/src/modules/ObjectDetectionTFLite/assets
348+
/src/modules/ObjectDetectionYolo/assets
349+
/src/modules/ObjectDetectionYolo/custom-models
405350
/src/modules/OCR/paddleocr
406351
/src/modules/PortraitFilter/runtimeconfig.template.Designer.cs
407352
/src/modules/SceneClassifier/assets
353+
/src/modules/TrainingYoloV5/assets
354+
/src/modules/TrainingYoloV5/datasets
355+
/src/modules/TrainingYoloV5/fiftyone
356+
/src/modules/TrainingYoloV5/training
357+
/src/modules/TrainingYoloV5/train
358+
/src/modules/TrainingYoloV5/zoo
408359
/src/modules/YOLOv5-3.1/custom-models
409360
/src/modules/YOLOv5-3.1/assets
410361
/src/modules/YOLOv5-3.1/windows_packages_cpu
411362
/src/modules/YOLOv5-3.1/windows_packages_gpu
412-
/src/AnalysisLayer/BackgroundRemover/models/u2net.onnx
413-
/src/AnalysisLayer/SceneClassifier/assets/categories_places365.txt
414-
/src/AnalysisLayer/SceneClassifier/assets/scene.pt
363+
364+
# Generated module packages
365+
/src/modules/ALPR/ALPR-[0-9].[0-9].zip
366+
/src/modules/BackgroundRemover/BackgroundRemover-[0-9].[0-9].zip
367+
/src/modules/Cartooniser/Cartooniser-[0-9].[0-9].zip
368+
/src/modules/FaceProcessing/FaceProcessing-[0-9].[0-9].zip
369+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-CPU-[0-9].[0-9].zip
370+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-OpenVINO-[0-9].[0-9].zip
371+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-DirectML-[0-9].[0-9].zip
372+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-CUDA-[0-9].[0-9].zip
373+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-CPU-[0-9].[0-9].zip
374+
/src/modules/ObjectDetectionTFLite/ObjectDetectionTFLite-1.0.zip
375+
/src/modules/ObjectDetectionYolo/ObjectDetectionYolo-[0-9].[0-9].zip
376+
/src/modules/OCR/OCR-[0-9].[0-9].zip
377+
/src/modules/PortraitFilter/PortraitFilter-[0-9].[0-9].zip
378+
/src/modules/SceneClassifier/SceneClassifier-[0-9].[0-9].zip
379+
/src/modules/SentimentAnalysis/SentimentAnalysis-[0-9].[0-9].zip
380+
/src/modules/SuperResolution/SuperResolution-[0-9].[0-9].zip
381+
/src/modules/TextSummary/TextSummary-[0-9].[0-9].zip
382+
/src/modules/YOLOv5-3.1/YOLOv5-3.1-[0-9].[0-9].zip
383+
/src/modules/ObjectDetectionNet/ObjectDetectionNet-1.1.zip

0 commit comments

Comments
 (0)