Skip to content

Commit

Permalink
Nuitrack v0.35.5
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-tsb committed Apr 30, 2021
1 parent 7eceba7 commit f0e295d
Show file tree
Hide file tree
Showing 47 changed files with 44 additions and 39 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Release v0.35.5

**Release Date**: 29 April 2021
**Nuitrack Runtime version**: 0.35.5
**Nuitrack SDK version**: 1.11.4

## Bug Fixes and Improvements

* `nuitrack_gl_sample`: fixed incorrect termination of the application when pressing the window close button
* Fixed application crashes when AI mode is not used

## Known Issues

* USB cameras permission issue on **Android 9 (Pie) or higher** except for the **Intel RealSense** sensors
* Gesture recognition may fail for a sitting pose

# Release v0.35.4

**Release Date**: 6 April 2021
Expand Down
Binary file not shown.
Binary file modified Examples/nuitrack_csharp_device_api_sample/nuitrack.net.dll
Binary file not shown.
Binary file modified Examples/nuitrack_csharp_sample/nuitrack.net.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Examples/nuitrack_gl_sample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ elseif(WIN32)
ELSEIF(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(PLATFORM_DIR win64)
ENDIF()
set(OPENGL_LIBS glut32 glu32 opengl32)
set(OPENGL_LIBS freeglut glu32 opengl32)
endif()

set(NUITRACK_LIBRARY_PATH ${CMAKE_CURRENT_LIST_DIR}/../../Nuitrack/lib/${PLATFORM_DIR})
Expand Down
Binary file modified Examples/nuitrack_gl_sample/android/libs/nuitrackhelper.jar
Binary file not shown.
25 changes: 12 additions & 13 deletions Examples/nuitrack_gl_sample/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
#include "NuitrackGLSample.h"

#include <GL/glut.h>

#include <GL/freeglut.h>
#include <iostream>

NuitrackGLSample sample;

void closeWindow()
{
sample.release();
glutDestroyWindow(glutGetWindow());
exit(EXIT_FAILURE);
}

// Keyboard handler
void keyboard(unsigned char key, int x, int y)
{
Expand All @@ -14,9 +19,7 @@ void keyboard(unsigned char key, int x, int y)
// On Esc key press
case 27:
{
sample.release();
glutDestroyWindow(glutGetWindow());
exit(EXIT_FAILURE);
closeWindow();
}

default:
Expand All @@ -40,13 +43,10 @@ void display()
{
// Delegate this action to example's main class
bool update = sample.update();

if (!update)
{
// End the work if update failed
sample.release();
glutDestroyWindow(glutGetWindow());
exit(EXIT_FAILURE);
closeWindow();
}

// Do flush and swap buffers to update viewport
Expand All @@ -65,8 +65,6 @@ void showHelpInfo()
"Press Esc to close window." << std::endl;
}



int main(int argc, char* argv[])
{
showHelpInfo();
Expand All @@ -91,7 +89,8 @@ int main(int argc, char* argv[])
glutDisplayFunc(display);
glutIdleFunc(idle);
glutMouseFunc(mouseClick);

glutCloseFunc(closeWindow);

// Setup OpenGL
glDisable(GL_DEPTH_TEST);
glEnable(GL_TEXTURE_2D);
Expand Down
Binary file modified Examples/nuitrack_ni_gl_sample/android/libs/nuitrackhelper.jar
Binary file not shown.
Binary file modified Nuitrack/lib/android-arm64/libOpenNI.so
Binary file not shown.
Binary file modified Nuitrack/lib/android-arm64/libmiddleware.so
Binary file not shown.
Binary file modified Nuitrack/lib/android-arm64/libnuitrack.so
Binary file not shown.
Binary file modified Nuitrack/lib/android-arm64/nuitrackhelper.jar
Binary file not shown.
Binary file modified Nuitrack/lib/android/libOpenNI.so
Binary file not shown.
Binary file modified Nuitrack/lib/android/libmiddleware.so
Binary file not shown.
Binary file modified Nuitrack/lib/android/libnuitrack.so
Binary file not shown.
Binary file modified Nuitrack/lib/android/nuitrackhelper.jar
Binary file not shown.
Binary file modified Nuitrack/lib/csharp/nuitrack.net.dll
Binary file not shown.
Binary file modified Nuitrack/lib/linux64/libmiddleware.so
Binary file not shown.
Binary file modified Nuitrack/lib/linux64/libnuitrack.so
Binary file not shown.
Binary file modified Nuitrack/lib/linux_arm/libmiddleware.so
Binary file not shown.
Binary file modified Nuitrack/lib/linux_arm/libnuitrack.so
Binary file not shown.
Binary file modified Nuitrack/lib/win32/middleware.lib
Binary file not shown.
Binary file modified Nuitrack/lib/win32/nuitrack.lib
Binary file not shown.
Binary file modified Nuitrack/lib/win64/middleware.lib
Binary file not shown.
Binary file modified Nuitrack/lib/win64/nuitrack.lib
Binary file not shown.
4 changes: 2 additions & 2 deletions Platforms/Nuitrack.apk
Git LFS file not shown
4 changes: 2 additions & 2 deletions Platforms/Nuitrack_arm64.apk
Git LFS file not shown
4 changes: 2 additions & 2 deletions Platforms/nuitrack-linux-armhf.deb
Git LFS file not shown
4 changes: 2 additions & 2 deletions Platforms/nuitrack-ubuntu-amd64.deb
Git LFS file not shown
4 changes: 2 additions & 2 deletions Platforms/nuitrack-windows-x64.exe
Git LFS file not shown
4 changes: 2 additions & 2 deletions Platforms/nuitrack-windows-x86.exe
Git LFS file not shown
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.3
1.11.4
2 changes: 1 addition & 1 deletion iOS-beta/nuitrack_sample/nuitrack.framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.35.4</string>
<string>0.35.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
12 changes: 1 addition & 11 deletions iOS-beta/nuitrack_sample/nuitrack.framework/data/nuitrack.config
Original file line number Diff line number Diff line change
Expand Up @@ -184,19 +184,9 @@
"Realsense2Module": {
"DeviceHardwareReset": false,
"Depth": {
"ProcessMaxDepth": 5000,
"ProcessWidth": 640,
"ProcessHeight": 480,
"Preset": 5,
"PostProcessing": {
"SpatialFilter": {
"spatial_iter": 0,
"spatial_alpha": 0.5,
"spatial_delta": 20
},
"DownsampleFactor": 1
},
"LaserPower": 1.0
"ProcessMaxDepth": 5000
},
"FileRecord": "",
"RGB": {
Expand Down
Binary file modified iOS-beta/nuitrack_sample/nuitrack.framework/nuitrack
Binary file not shown.

0 comments on commit f0e295d

Please sign in to comment.