Error while running face-recognization of Tappas

@pfmatthews
You executed the tappas > ./install.sh. This will build .so file for tappas/core/hailo/apps/x86/vms/face_align.cpp at master · hailo-ai/tappas · GitHub with the help of meson. on successful execution, It will create a build.release “core/hailo/build.release” folder, you can find the so(i think it should be in build.release/apps/x86/vms/) file in the build dir. And copy to required place.

NOTE: I have not tested facial-recognition myself. I was trying to build my own post processing so file. Then i figured out.
There may be compatibility issue. It seems it is only for x86 not for arm. But can’t say exactly.

Thanks for advice - I did try to execute the install script, but no joy - the .SO file wasn’t created anywhere :frowning: and now nothing works - It looks like I’ll have to re-install from scratch (again).

For the rpi5 target, the problem is, those libraries are not included, my guess, by mistake. They build fine and seem to work.

--- hailo-tappas-core-3.31.0+2.orig/core/hailo/apps/meson.build
+++ hailo-tappas-core-3.31.0+2/core/hailo/apps/meson.build
@@ -49,7 +49,7 @@ cv_singleton_dep = declare_dependency(
   link_with : cv_singleton_lib)
 
 # App Subdirectories
-if target_platform == 'x86' or target_platform == 'rpi' or target_platform == 'rockchip'
+if target_platform == 'x86' or target_platform == 'rpi' or target_platform == 'rpi5' or target_platform == 'rockchip'
     subdir('x86')
 elif target_platform == 'imx8'
     subdir('imx')