Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.

EmotionDection with SenseManager is not working

Basaveswar_K_
Beginner
549 Views

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 Replies
Xusheng_L_Intel
Employee
549 Views

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

0 Kudos
Basaveswar_K_
Beginner
549 Views

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 ?

0 Kudos
Reply