summaryrefslogtreecommitdiffhomepage
path: root/tracker-rs/rs_impl
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-30 07:37:41 +0100
committerStanislaw Halik <sthalik@misaki.pl>2015-10-30 08:39:32 +0100
commitaa066bdd4622d4f6824fee864f6be6806813f04d (patch)
tree3df328b8b364cba2373a85827191b259bd78d546 /tracker-rs/rs_impl
parentd6a54431d178632a2bf466c9904f74abd143afe6 (diff)
move to subdirectory-based build system
Closes #224
Diffstat (limited to 'tracker-rs/rs_impl')
-rw-r--r--tracker-rs/rs_impl/bin/opentrack-tracker-rs-impl.exebin0 -> 83968 bytes
-rw-r--r--tracker-rs/rs_impl/build.bat2
-rw-r--r--tracker-rs/rs_impl/ftnoir_tracker_rs_impl.cpp151
-rw-r--r--tracker-rs/rs_impl/ftnoir_tracker_rs_impl.h19
-rw-r--r--tracker-rs/rs_impl/udp_sender.cpp53
5 files changed, 225 insertions, 0 deletions
diff --git a/tracker-rs/rs_impl/bin/opentrack-tracker-rs-impl.exe b/tracker-rs/rs_impl/bin/opentrack-tracker-rs-impl.exe
new file mode 100644
index 00000000..1e2a57f1
--- /dev/null
+++ b/tracker-rs/rs_impl/bin/opentrack-tracker-rs-impl.exe
Binary files differ
diff --git a/tracker-rs/rs_impl/build.bat b/tracker-rs/rs_impl/build.bat
new file mode 100644
index 00000000..15206431
--- /dev/null
+++ b/tracker-rs/rs_impl/build.bat
@@ -0,0 +1,2 @@
+cd "%VS120COMNTOOLS%\..\..\VC"
+vcvarsall x64 && cd %~dp0 && CL /nologo /Ox /DUNICODE /D_UNICODE /MT /I"%RSSDK_DIR%\opensource\include" ftnoir_tracker_rs_impl.cpp udp_sender.cpp "%RSSDK_DIR%\opensource\src\libpxc\libpxc.cpp" /link ADVAPI32.LIB Ws2_32.lib /SUBSYSTEM:CONSOLE /OUT:bin\opentrack-tracker-rs-impl.exe \ No newline at end of file
diff --git a/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.cpp b/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.cpp
new file mode 100644
index 00000000..c1ba5c75
--- /dev/null
+++ b/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.cpp
@@ -0,0 +1,151 @@
+/*
+ * Copyright (c) 2015, Intel Corporation
+ * Author: Xavier Hallade <xavier.hallade@intel.com>
+ * Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "ftnoir_tracker_rs_impl.h"
+#include <pxcsensemanager.h>
+#include <pxcfaceconfiguration.h>
+
+PXCSenseManager* g_senseManager = NULL;
+PXCFaceData* g_faceData = NULL;
+
+pxcStatus rs_tracker_set_configuration(PXCFaceModule *faceModule){
+ pxcStatus retStatus;
+ PXCFaceConfiguration *faceConfig = NULL;
+
+ if (faceModule == NULL)
+ return PXC_STATUS_HANDLE_INVALID;
+
+ faceConfig = faceModule->CreateActiveConfiguration();
+ if (faceConfig == NULL){
+ return PXC_STATUS_HANDLE_INVALID;
+ }
+
+ faceConfig->pose.isEnabled = true;
+ faceConfig->pose.maxTrackedFaces = 1;
+ faceConfig->pose.smoothingLevel = PXCFaceConfiguration::SmoothingLevelType::SMOOTHING_DISABLED;
+ faceConfig->strategy = PXCFaceConfiguration::STRATEGY_CLOSEST_TO_FARTHEST;
+ faceConfig->detection.isEnabled = false;
+ faceConfig->landmarks.isEnabled = false;
+ faceConfig->DisableAllAlerts();
+ faceConfig->SetTrackingMode(PXCFaceConfiguration::FACE_MODE_COLOR_PLUS_DEPTH);
+
+ retStatus = faceConfig->ApplyChanges();
+ if (retStatus != PXC_STATUS_NO_ERROR){
+ faceConfig->Release();
+ return retStatus;
+ }
+
+ faceConfig->Release();
+ return PXC_STATUS_NO_ERROR;
+}
+
+int rs_tracker_impl_start(){
+ pxcStatus retStatus;
+ PXCFaceModule *faceModule = NULL;
+
+ g_senseManager = PXCSenseManager::CreateInstance();
+ if (g_senseManager == NULL){
+ rs_tracker_impl_end();
+ return PXC_STATUS_HANDLE_INVALID;
+ }
+
+ retStatus = g_senseManager->EnableFace();
+ if (retStatus != PXC_STATUS_NO_ERROR){
+ rs_tracker_impl_end();
+ return retStatus;
+ }
+
+ faceModule = g_senseManager->QueryFace();
+ if (faceModule == NULL){
+ rs_tracker_impl_end();
+ return PXC_STATUS_HANDLE_INVALID;
+ }
+
+ retStatus = rs_tracker_set_configuration(faceModule);
+ if (retStatus != PXC_STATUS_NO_ERROR){
+ rs_tracker_impl_end();
+ return PXC_STATUS_HANDLE_INVALID;
+ }
+
+ retStatus = g_senseManager->Init();
+ if (retStatus != PXC_STATUS_NO_ERROR){
+ rs_tracker_impl_end();
+ return retStatus;
+ }
+
+ g_faceData = faceModule->CreateOutput();
+ if (g_faceData == NULL){
+ rs_tracker_impl_end();
+ return PXC_STATUS_HANDLE_INVALID;
+ }
+
+ return PXC_STATUS_NO_ERROR;
+}
+
+int rs_tracker_impl_update_pose(double *data){
+ pxcStatus retStatus;
+ PXCFaceData::PoseEulerAngles angles;
+ PXCFaceData::HeadPosition headPosition;
+ PXCFaceData::Face *face = NULL;
+ PXCFaceData::PoseData *pose = NULL;
+ bool poseAnglesAvailable = false;
+ bool headPositionAvailable = false;
+
+ if (g_senseManager != NULL && g_faceData != NULL
+ && (retStatus = g_senseManager->AcquireFrame(true, 16)) == PXC_STATUS_NO_ERROR){
+
+ retStatus = g_faceData->Update();
+ if (retStatus != PXC_STATUS_NO_ERROR){
+ rs_tracker_impl_end();
+ return retStatus;
+ }
+
+ pxcI32 numberOfDetectedFaces = g_faceData->QueryNumberOfDetectedFaces();
+ for (pxcI32 i = 0; i < numberOfDetectedFaces; ++i) {
+ face = g_faceData->QueryFaceByIndex(0);
+ if (face == NULL) continue;
+
+ pose = face->QueryPose();
+ if (pose == NULL) continue;
+
+ poseAnglesAvailable = pose->QueryPoseAngles(&angles);
+ if (!poseAnglesAvailable) continue;
+
+ headPositionAvailable = pose->QueryHeadPosition(&headPosition);
+ if (!headPositionAvailable) continue;
+
+ //TODO: use pxcI32 pose->QueryConfidence(); ? for data[6] or to filter here ?
+
+ //x, y, z: cm
+ data[0] = headPosition.headCenter.x / 10.;
+ data[1] = headPosition.headCenter.y / 10.;
+ data[2] = headPosition.headCenter.z / 10.;
+
+ //yaw, pitch, roll: degrees
+ data[3] = -angles.yaw;
+ data[4] = angles.pitch;
+ data[5] = -angles.roll;
+ }
+
+ g_senseManager->ReleaseFrame();
+ }
+
+ return retStatus;
+}
+
+int rs_tracker_impl_end(){
+ if (g_faceData != NULL){
+ g_faceData->Release();
+ g_faceData = NULL;
+ }
+
+ if (g_senseManager != NULL){
+ g_senseManager->Release();
+ g_senseManager = NULL;
+ }
+ return PXC_STATUS_NO_ERROR;
+}
diff --git a/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.h b/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.h
new file mode 100644
index 00000000..0e4073d0
--- /dev/null
+++ b/tracker-rs/rs_impl/ftnoir_tracker_rs_impl.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 2015, Intel Corporation
+ * Author: Xavier Hallade <xavier.hallade@intel.com>
+ * Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#pragma once
+#ifdef EXPORT_RS_IMPL
+#define RSTRACKERIMPL_VISIBILITY __declspec( dllexport )
+#else
+#define RSTRACKERIMPL_VISIBILITY
+#endif
+
+extern "C" {
+ RSTRACKERIMPL_VISIBILITY int rs_tracker_impl_start();
+ RSTRACKERIMPL_VISIBILITY int rs_tracker_impl_update_pose(double *pose);
+ RSTRACKERIMPL_VISIBILITY int rs_tracker_impl_end();
+}
diff --git a/tracker-rs/rs_impl/udp_sender.cpp b/tracker-rs/rs_impl/udp_sender.cpp
new file mode 100644
index 00000000..095edd8f
--- /dev/null
+++ b/tracker-rs/rs_impl/udp_sender.cpp
@@ -0,0 +1,53 @@
+/*
+ * Copyright (c) 2015, Intel Corporation
+ * Author: Xavier Hallade <xavier.hallade@intel.com>
+ * Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "ftnoir_tracker_rs_impl.h"
+#include <winsock2.h>
+#include <Ws2tcpip.h>
+#include <commctrl.h>
+#include <cstdlib>
+
+#define UDP_PORT 4242
+
+int main(){
+ double pose[6] = { 0., 0., 0., 0., 0., 0. };
+ struct sockaddr_in socketInfo;
+ SOCKET s = 0;
+ WSADATA wsa;
+
+ int retStatus = rs_tracker_impl_start();
+ if (retStatus != 0){
+ exit(retStatus);
+ }
+
+ if (WSAStartup(MAKEWORD(2, 2), &wsa) != 0) //init winsocketapi
+ exit(EXIT_FAILURE);
+
+ memset(&socketInfo, 0, sizeof(socketInfo));
+ socketInfo.sin_family = AF_INET;
+ socketInfo.sin_port = htons(UDP_PORT);
+ InetPton(AF_INET, L"127.0.0.1", &socketInfo.sin_addr.S_un.S_addr);
+
+ if ((s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == SOCKET_ERROR) //create UDP socket
+ exit(EXIT_FAILURE);
+
+ for(;;) {
+ retStatus = rs_tracker_impl_update_pose(pose);
+ if(retStatus == 0){ //no error
+ if (sendto(s, (char*)&pose, sizeof(pose), 0, (struct sockaddr *) &socketInfo, sizeof(socketInfo)) == SOCKET_ERROR) //send new data
+ exit(EXIT_FAILURE);
+ }
+
+ if(retStatus != 0 && retStatus != -303)// -303=timeout and 0 are ok, else we've got to stop.
+ break;
+ }
+
+ closesocket(s);
+ WSACleanup();
+
+ return retStatus;
+}