Skip to content

Commit

Permalink
Version 1.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bibigone committed Apr 6, 2021
1 parent 0d0b438 commit edf1099
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
7 changes: 4 additions & 3 deletions K4AdotNet.Samples.Unity/prepare.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ copy /y "%ProgramFiles%\Azure Kinect Body Tracking SDK\tools\cufft64_10.dll" Ass
copy /y "%ProgramFiles%\Azure Kinect Body Tracking SDK\tools\onnxruntime.dll" Assets\Plugins\K4AdotNet\
copy /y "%ProgramFiles%\Azure Kinect Body Tracking SDK\tools\vcomp140.dll" Assets\Plugins\K4AdotNet\

rem If Body Tracking SDK is installed to another location or you want to have portable solution which does not require installation of Body Tracking SDK
rem then copy manually the following libraries and data files from "tools" folder of Body Tracking SDK to "Assets\Plugins\K4AdotNet" folder of this plugin:
rem k4abt.dll, dnn_model_2_0_op11.onnx (or dnn_model_2_0_lite_op11.onnx), cublas64_11.dll, cublasLt64_11.dll, cudart64_110.dll, cudnn_cnn_infer64_8.dll, cudnn_ops_infer64_8.dll, cudnn64_8.dll, cufft64_10.dll, onnxruntime.dll, vcomp140.dll.
rem If Body Tracking SDK is installed to another location then copy manually the following libraries and data files
rem from "tools" folder of Body Tracking SDK to "Assets\Plugins\K4AdotNet" folder of this plugin:
rem k4abt.dll, dnn_model_2_0_op11.onnx and/or dnn_model_2_0_lite_op11.onnx, cublas64_11.dll, cublasLt64_11.dll, cudart64_110.dll,
rem cudnn_cnn_infer64_8.dll, cudnn_ops_infer64_8.dll, cudnn64_8.dll, cufft64_10.dll, onnxruntime.dll, vcomp140.dll.
11 changes: 5 additions & 6 deletions K4AdotNet.Samples.Unity/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ It will build **K4AdotNet** project and copy necessary binaries to Unity project
You may run the script anytime later to update binaries with changes made to **K4AdotNet** library.

The script assumes that **Azure Kinect Body Tracking SDK** is installed into default location under Program Files.
If it doesn't take place or you want to have portable solution which doesn't depend on presence of Body Tracking SDK on local machine
then copy the following files from `tools` folder of Body Tracking SDK to `Assets\Plugins\K4AdotNet` folder of this plugin:
If it doesn't take place then copy the following files from `tools` folder of Body Tracking SDK to `Assets\Plugins\K4AdotNet` folder of this plugin:
* `k4abt.dll`,
* `dnn_model_2_0_op11.onnx`,
* `dnn_model_2_0_op11.onnx` and/or `dnn_model_2_0_lite_op11.onnx`,
* `cublas64_11.dll`,
* `cublasLt64_11.dll`,
* `cudart64_110.dll`,
Expand All @@ -30,13 +29,13 @@ This plugin depends on the following managed and native libraries and data files
* **K4AdotNet** managed library (see `..\K4AdotNet\bin\Debug\netstandard2.0` or ``..\K4AdotNet\bin\Release\netstandard2.0`` folder):
* `K4AdotNet.dll`
* `K4AdotNet.deps.json`
* native libraries from **Azure Kinect Sensor SDK 1.4.0** (see `..\externals\k4a\windows-desktop\amd64` folder):
* native libraries from **Azure Kinect Sensor SDK 1.4.1** (see `..\externals\k4a\windows-desktop\amd64` folder):
* `depthengine_2_0.dll`
* `k4a.dll`
* `k4arecord.dll`
* native libraries and ONNX-file from **Azure Kinect Body Tracking SDK 1.0.x** (you can download and install MSI package from [here](https://docs.microsoft.com/en-us/azure/kinect-dk/body-sdk-download) and find required files in `tools` subdirectory of installation destination directory):
* native libraries and ONNX-file from **Azure Kinect Body Tracking SDK 1.1.x** (you can download and install MSI package from [here](https://docs.microsoft.com/en-us/azure/kinect-dk/body-sdk-download) and find required files in `tools` subdirectory of installation destination directory):
* `k4abt.dll`,
* `dnn_model_2_0_op11.onnx`,
* `dnn_model_2_0_op11.onnx` and/or `dnn_model_2_0_lite_op11.onnx`,
* `cublas64_11.dll`,
* `cublasLt64_11.dll`,
* `cudart64_110.dll`,
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020
Copyright (c) 2019-2021

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions Product.props
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project>
<PropertyGroup>
<Version>1.4.1</Version>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<Version>1.4.11</Version>
<AssemblyVersion>1.4.11.0</AssemblyVersion>
<PackageReleaseNotes>See https://github.com/bibigone/k4a.net/releases </PackageReleaseNotes>
<Authors>bibigone,baSSiLL</Authors>
<Company />
<Product>K4A.Net</Product>
<Copyright>Copyright (c) 2019-2020</Copyright>
<Copyright>Copyright (c) 2019-2021</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/bibigone/k4a.net/blob/master/README.md</PackageProjectUrl>
<RepositoryUrl>https://github.com/bibigone/k4a.net</RepositoryUrl>
Expand Down
6 changes: 3 additions & 3 deletions ProductInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("K4A.Net")]
[assembly: AssemblyCopyright("Copyright © 2019-2020")]
[assembly: AssemblyCopyright("Copyright © 2019-2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
[assembly: AssemblyVersion("1.4.11.0")]
[assembly: AssemblyFileVersion("1.4.11.0")]

0 comments on commit edf1099

Please sign in to comment.