Software Archive
Read-only legacy content
17061 Discussions

Real sense basics

agund4
Novice
1,072 Views

Hi Team,

 

I am very new to intel real sense SDK

Could somebody guide me in Hand recognisation.

0 Kudos
9 Replies
samontab
Valued Contributor II
1,072 Views

You can start by browsing the samples, and then read the code of the hand tracker sample. Also, there is a lot of information in the SDK documentation. Have a look here:

https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?manuals_hand_tracking.html

0 Kudos
agund4
Novice
1,072 Views

@samontab  I need the code explanation of algorithams

0 Kudos
AndreCarlucci
Beginner
1,072 Views

@aravind g., what do you mean by that? Could you explain a little bit further?

 

0 Kudos
agund4
Novice
1,072 Views

@ Andre I am going through the Hand viewer in (c#). There is a lot of inbuilt source.I need clear explanation of it. Is it possible for you to have a web conference.

0 Kudos
samontab
Valued Contributor II
1,072 Views

What is not clear? read the documentation and see the source code of the examples. It is all there.

0 Kudos
Felipe_P_Intel
Employee
1,072 Views

Hi Aravind,

You can try to look this set of simple samples that I made: https://software.intel.com/en-us/articles/intel-realsense-sdk-code-samples

They were made to version 4.0 but if you replace the DLLs inside the folder Libs by the new ones, you should get it working.

Regards,

Felipe

0 Kudos
Ariska_Hidayat
Beginner
1,072 Views

Hi Mr Felipe,

The example is very complete. but I have a little problem. I can not run these examples. after I replace the  lippxcclr.cs.dll also unworkable.

Location Error:

PXCMSession.ImplVersion sdkVersion = session.QueryVersion();

Information Error.

An unhandled exception of type 'System.NullReferenceException' occurred in SpeechRecognitionDictation.exe


Pelase what I must doing? thx.

 

Regards,

Ariska.

0 Kudos
AndreCarlucci
Beginner
1,072 Views

Hi Ariska,

If C# is your thing, you can try SharpSenses: https://github.com/SharpSenses/SharpSenses

All you have to do is create a new project, install the nuget package "Install-Package SharpSenses.RealSense" and you're good to go. No need to import any other dll and it works with x32 and x64.

For speech recognition:

   car cam = Camera.Create();
   cam.Speech.SpeechRecognized += (s, a) => {
        Console.WriteLine("-> " + a.Sentence);
    };
    cam.Speech.EnableRecognition();

Currently it works with R3, but I''ll upload the R4 version by the end of the week.

Cheers

0 Kudos
Felipe_P_Intel
Employee
1,072 Views

Hi Aravind,

You need to replace both libraries (libpxccpp2c.dll and libpxcclr.cs.dll) inside the Libs folder and make sure that you are building for the right architecture (win32 or x64) or for AnyCpu. After making sure that you replaced everything, just clean your Visual Studio build and run the samples again.

Regards

Felipe

0 Kudos
Reply