dlib

    0熱度

    2回答

    需要幫助! 我有這個代碼。我如何繪製68並在相機預覽中看到它們? public Mat onCameraFrame(CameraBridgeViewBase.CvCameraViewFrame inputFrame) { rgba = inputFrame.rgba(); try { Bitmap bmp = matToBitmap(rgba);

    0熱度

    1回答

    我很努力在Windows 10上爲Python 3.6安裝dlib。我已經安裝並構建了boost,將... \ boost_1_63_0文件夾與... \ boost_1_63_0 \ stage \ lib文件夾到PATH。 但我仍然有當我嘗試在命令提示符下鍵入python setup.py install以下消息 LINK : fatal error LNK1104: cannot open

    0熱度

    1回答

    的代碼在Python Shell 進口DLIB dlib.image_window 它可以自動完成代碼 ,你可以在這裏看到的圖像。 enter image description here 但是在pycharm中沒有任何東西。 enter image description here 如何在pycharm中解決這個問題?

    2熱度

    1回答

    我想從低亮度圖像中檢測人臉。我使用dlib從圖像中檢測臉部。但是dlib檢測器根本檢測到任何臉部。我有以下代碼來檢測圖像的面部。 detector=dlib.get_frontal_face_detector() faces=detector(image) 當我嘗試打印它顯示零的面的長度。 任何人都可以幫助我,我該怎麼辦?是否有其他方式來檢測低亮度圖像的圖像?謝謝。

    -1熱度

    1回答

    如何將以下DLib操作的結果疊加到OpenCV圖像上? dets = detector(image, 1) print("Number of faces detected: {}".format(len(dets))) for k, d in enumerate(dets): shape = predictor(image, d) 我想提請下巴此圖像中檢測.. 原代碼 有像做

    1熱度

    2回答

    我使用dLib識別我的python應用程序中的某些面部特徵。我可以在鼻子,眼睛和下巴上畫點。 這裏是我的代碼 for k, d in enumerate(dets): shape = predictor(image, d) shape = shape_to_np(shape) for (x, y) in shape: font = cv2.FONT_HE

    1熱度

    1回答

    https://snag.gy/6MrLNi.jpg 下巴有點過。 https://snag.gy/ORZHSe.jpg 沒有這一項。 差異代碼: image = cv2.resize(image,(2170, 2894), interpolation = cv2.INTER_AREA) 第二個沒有這條線。 完整的源代碼: import cv2 import sys import dlib

    0熱度

    1回答

    我想開發一個關於人臉識別的android應用程序。我想用dlib模型(dlib_face_recognition_resnet_model_v1.dat)來獲取臉部特徵矢量。我從來沒有做過關於android開發的一些事情。我想問的是我該如何端口將.dat模型導入到android開發(.so)中。

    0熱度

    1回答

    我正在開發一個iOs應用程序,其中我實現了Dlib庫以獲取圖像中的面部標誌點。以下是我實施的代碼。 dlib::frontal_face_detector detector = dlib::get_frontal_face_detector(); dlib::shape_predictor shapePredictor; NSBundle *mainBundle = [NSBundle mai

    1熱度

    2回答

    我有一個瞳孔中心檢測問題。我訓練了CNN給我瞳孔中心的位置,但它並不總是在中心。 如何進行良好的處理並使橢圓擬合算法檢測中心? 過程就是這樣。我用dlib在一張圖片上剪下臉部,然後我做出了預測,在得到結果之後我想要預測中心。 以下是cnn預測的兩個示例。任何指導將不勝感激。