ArcFace-python
ArcFace-python copied to clipboard
请问大佬,怎么把提取出来的人脸特征保存下来呢? @ @tensorflower
感谢大佬!
把我从face_recognition中解放出来了,感谢!
我目前在做一个实时的人脸对比程序,我用了两个线程,第一个线程实时显示结果,第二个线程做人脸对比,年龄预测等功能,但是第二个线程总是崩掉,有时候也会报Fatal Python error: GC object already tracked这个错误,不知道什么原因 下面是我第二个线程循环调用的函数 ```python def compare_face(self, ): try: if self.tmp_frame is not None: new_img = self.tmp_frame.copy() new_img = load_image(new_img) image_ubytes = new_img.imageData.ctypes.data_as(POINTER(c_ubyte)) detect_faces = asf_struct.ASFMultiFaceInfo()...