Daniel Jerez Garrido
Daniel Jerez Garrido
thanks for answering! but then how do I use the training? It is where I am most lost, I don't know what to do with the xml file that is...
My intention was to replicate this python code, and detect from the camera image, but I don't know how to use the DataSet that I have trained and evaluate the...
Oh! nice. Don't worry, my English is not very good. And can Array2D be cast to FaceRecognitionDoNet.Image? ` IEnumerable locationsA = fr.FaceLocations(img); ` CompareFace use Dlib? Thank you very much...
I've made it work like this `Image imageA = FaceRecognition.LoadImage(img.ToBytes(), img.Rows, img.Columns, 3);` Although there is a slight delay in the calculation in each frame that recognizes a face, how...
I have small doubts. - Why does the face compare (FaceRecognition.CompareFace) algorithm use 5 landmark? `shape_predictor_5_face_landmarks.dat` - Because when transforming an opencv (Mat) frame into Array2D, colors are lost (the...
Maybe that's a dumb question, but is there any existing function to switch from Bgr to Rgb and vicebersa?
by if it's helpful ``` public static void RGBtoBGR(Bitmap bmp) { BitmapData data = bmp.LockBits(new System.Drawing.Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat); int length = Math.Abs(data.Stride) * bmp.Height; unsafe { byte*...
abjoint the test that I am doing in Unity, although it also happens to me with a similar code in windows forms ``` using DlibDotNet; using System.IO; using UnityEngine; public...
ok, i will try it, thanks! How do you make a dispose of faces? (Rectagle [])
I have added all the possible disposes and the ram continues to act the same, the consumption is exponential. ``` using DlibDotNet; using System; using System.IO; using UnityEngine; public class...