Skip to content
  • There are no suggestions because the search field is empty.

How to switch face search algorithm mode?

Some of face tracking modes are used offline only, but you can turn on this mode for real-time as well in order to improve face search algorithm.

You are able to replace modes in the following way:

BanubaFaceAR/Scripts/BanubaSDKManager.cs line 61        

// set face search algorithm        BanubaSDKBridge.bnb_recognizer_set_face_search_mode(            recognizer, BanubaSDKBridge.bnb_face_search_mode_t.bnb_good_for_first_face, out error); 

replace to       
 // set face search algorithm        BanubaSDKBridge.bnb_recognizer_set_face_search_mode(            recognizer, BanubaSDKBridge.bnb_face_search_mode_t.bnb_good, out error);