From 05698f70edcd3106021425ac36023964e527e72e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 22 Jun 2020 14:06:25 +0200 Subject: new package open https://github.com/goodspb/pdlib/pull/25 fix linker command open https://github.com/goodspb/pdlib/pull/26 fix skip test open https://github.com/goodspb/pdlib/pull/27 display version open https://github.com/goodspb/pdlib/pull/29 fix build --- REFLECTION | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..01fa628 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,127 @@ +Extension [ extension #90 pdlib version 1.0.1 ] { + + - Functions { + Function [ function confirm_pdlib_compiled ] { + } + Function [ function dlib_chinese_whispers ] { + + - Parameters [1] { + Parameter #0 [ $edges ] + } + } + Function [ function dlib_face_detection ] { + + - Parameters [2] { + Parameter #0 [ $img_path ] + Parameter #1 [ $upsample_num ] + } + } + Function [ function dlib_face_landmark_detection ] { + + - Parameters [2] { + Parameter #0 [ $shape_predictor_file_path ] + Parameter #1 [ $img_path ] + } + } + } + + - Classes [3] { + Class [ class CnnFaceDetection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $cnn_face_detection_model_path ] + } + } + + Method [ public method detect ] { + + - Parameters [2] { + Parameter #0 [ $img_path ] + Parameter #1 [ $upsample_num ] + } + } + } + } + + Class [ class FaceLandmarkDetection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $shape_predictor_file_path ] + } + } + + Method [ public method detect ] { + + - Parameters [2] { + Parameter #0 [ $img_path ] + Parameter #1 [ $bounding_box ] + } + } + } + } + + Class [ class FaceRecognition ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $face_recognition_model_path ] + } + } + + Method [ public method computeDescriptor ] { + + - Parameters [3] { + Parameter #0 [ $img_path ] + Parameter #1 [ $landmarks ] + Parameter #2 [ $num_jitters ] + } + } + } + } + } +} + -- cgit