rainyl / opencv_dart

OpenCV bindings for Dart language and Flutter.
https://pub.dev/packages/opencv_dart
Apache License 2.0
78 stars 10 forks source link

FaceDetectorYN and FaceRecognizerSF is required #88

Closed YancyHsu closed 2 weeks ago

YancyHsu commented 2 weeks ago

if face detect and face recognize is added, it's perfect. thanks for the author's plugin, it is so nice!

rainyl commented 2 weeks ago

Accepted, but in lower priority, if you or other developers want to implement them, contributions are welcome~

YancyHsu commented 2 weeks ago

Accepted, but in lower priority, if you or other developers want to implement them, contributions are welcome~

but i am a starter in ffi...i will try. thanks!

abdelaziz-mahdy commented 2 weeks ago

Accepted, but in lower priority, if you or other developers want to implement them, contributions are welcome~

thats in the ml module ? i dont think i saw it there

me personally i want the FaceDetectorYN and FaceRecognizerSF so can you point me on where it can be found and if i should follow any additional steps other than the ml module part we did

rainyl commented 2 weeks ago

me personally i want the FaceDetectorYN and FaceRecognizerSF so can you point me on where it can be found and if i should follow any additional steps other than the ml module part we did

It's in objdetect module, not ml, https://docs.opencv.org/4.x/df/d20/classcv_1_1FaceDetectorYN.html

This project was started from gocv, they didn't have FaceDetectorYN and FaceRecognizerSF wrappers so I didn't add them, but basically it is same as what we done in ml module.

abdelaziz-mahdy commented 2 weeks ago

https://docs.opencv.org/4.x/df/d20/classcv_1_1FaceDetectorYN.html

thank you, will check it in my free time, hopefully its easier than the ml module since its smaller

rainyl commented 2 weeks ago

hopefully its easier than the ml module since its smaller

It will be, there are just two classes. image

YancyHsu commented 2 weeks ago

Accepted, but in lower priority, if you or other developers want to implement them, contributions are welcome~

thats in the ml module ? i dont think i saw it there

me personally i want the FaceDetectorYN and FaceRecognizerSF so can you point me on where it can be found and if i should follow any additional steps other than the ml module part we did

it has detect, feature, match api, etc. so i t is really simple to use, and it is accurate, i test it in python opencv, 200 people almost every single face is right

abdelaziz-mahdy commented 2 weeks ago

We are working on it, I personally need it so hopefully we finish it soon and make sure all is good ❤️

rainyl commented 2 weeks ago

@YancyHsu Thanks to @abdelaziz-mahdy ,FaceDetectorYN and FaceDetectorSF have been implemented and published in v1.0.7, you can now update opencv_dart to v1.0.7 to use, if there are any problems, please open a new issue, now I am going to close this one.

Have fun with opencv_dart~

YancyHsu commented 2 weeks ago

@YancyHsu Thanks to @abdelaziz-mahdy ,FaceDetectorYN and FaceDetectorSF have been implemented and published in v1.0.7, you can now update opencv_dart to v1.0.7 to use, if there are any problems, please open a new issue, now I am going to close this one.

Have fun with opencv_dart~

really thanks, what a masterpiece!