diff options
author | Remi Collet <remi@remirepo.net> | 2020-06-22 14:06:25 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-06-22 14:06:25 +0200 |
commit | 05698f70edcd3106021425ac36023964e527e72e (patch) | |
tree | bedb920ec0b204bec6ed3e69b05e6d0c4d85dc0c /REFLECTION |
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
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..01fa628 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,127 @@ +Extension [ <persistent> extension #90 pdlib version 1.0.1 ] { + + - Functions { + Function [ <internal:pdlib> function confirm_pdlib_compiled ] { + } + Function [ <internal:pdlib> function dlib_chinese_whispers ] { + + - Parameters [1] { + Parameter #0 [ <required> $edges ] + } + } + Function [ <internal:pdlib> function dlib_face_detection ] { + + - Parameters [2] { + Parameter #0 [ <required> $img_path ] + Parameter #1 [ <optional> $upsample_num ] + } + } + Function [ <internal:pdlib> function dlib_face_landmark_detection ] { + + - Parameters [2] { + Parameter #0 [ <required> $shape_predictor_file_path ] + Parameter #1 [ <optional> $img_path ] + } + } + } + + - Classes [3] { + Class [ <internal:pdlib> class CnnFaceDetection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:pdlib, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $cnn_face_detection_model_path ] + } + } + + Method [ <internal:pdlib> public method detect ] { + + - Parameters [2] { + Parameter #0 [ <required> $img_path ] + Parameter #1 [ <required> $upsample_num ] + } + } + } + } + + Class [ <internal:pdlib> class FaceLandmarkDetection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:pdlib, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $shape_predictor_file_path ] + } + } + + Method [ <internal:pdlib> public method detect ] { + + - Parameters [2] { + Parameter #0 [ <required> $img_path ] + Parameter #1 [ <required> $bounding_box ] + } + } + } + } + + Class [ <internal:pdlib> class FaceRecognition ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:pdlib, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $face_recognition_model_path ] + } + } + + Method [ <internal:pdlib> public method computeDescriptor ] { + + - Parameters [3] { + Parameter #0 [ <required> $img_path ] + Parameter #1 [ <required> $landmarks ] + Parameter #2 [ <required> $num_jitters ] + } + } + } + } + } +} + |