Software Archive
Read-only legacy content

Real sense basics

agund4
초보자
1,068 조회수

Hi Team,

 

I am very new to intel real sense SDK

Could somebody guide me in Hand recognisation.

0 포인트
9 응답
samontab
소중한 기여자 II
1,068 조회수

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 포인트
agund4
초보자
1,068 조회수

@samontab  I need the code explanation of algorithams

0 포인트
AndreCarlucci
초급자
1,068 조회수

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

 

0 포인트
agund4
초보자
1,068 조회수

@ 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 포인트
samontab
소중한 기여자 II
1,068 조회수

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

0 포인트
Felipe_P_Intel
1,068 조회수

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 포인트
Ariska_Hidayat
초급자
1,068 조회수

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 포인트
AndreCarlucci
초급자
1,068 조회수

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 포인트
Felipe_P_Intel
1,068 조회수

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 포인트
응답