Software Archive
Read-only legacy content
17061 Diskussionen

EmotionDection with SenseManager is not working

Basaveswar_K_
Einsteiger
479Aufrufe

Hi,

I was trying to execute the JavaExample 29: Emotion with detection with SenseManager using Java API 3.1 version (on page 85 of sdkmanual), but it is not working. I don't see methods EnableMotion() & QueryEmotion() on the SenseManager object. Does this been changed to something else ? If so, what is the new way of calling ?

		PXCMSenseManager senseManager = PXCMSenseManager.CreateInstance();
		
		senseManager.EnableEmotion();
		
		senseManager.Init();		
		while(senseManager.AcquireFrame(true).compareTo(pxcmStatus.PXCM_STATUS_NO_ERROR) >0) {
			
			PXCMEmotion emotion = senseManager.QueryEmotion();
			
			senseManager.ReleaseFrame();
		}
		
		senseManager.close();

 

0 Kudos
2 Antworten
Xusheng_L_Intel
Mitarbeiter
479Aufrufe

It has not implemented yet. Currently the Emotion module only support c++ and c#. Thanks!

Basaveswar_K_
Einsteiger
479Aufrufe

Thanks David.

There are many more examples in sdkmanual of latest Gold version release are not working in Java. Do you have a comprehensive list of features which are supported / not-supported by language wise ?

Antworten