我正在一个使用face_recognition模块的项目中。它包含一个给定图像的函数,该函数返回作为narray包含的每个面部的128位编码。数组看起来像这样-
>im_en = face_recognition.face_encodings(np.array(f)) #f is the image
>im_en #A single face is detected
>[array([-8.33341479e-02, 1.22006938e-01, -1.00014359e02,......
-3.79653387e-02])] # length of array is 128
我想将数组存储到mysql数据库中,并且以后也可以检索它。 正确的方法是什么?