Created
December 25, 2016 15:15
-
-
Save 0V/a70737ce00eddcceb34e9cce1aafa926 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cv2.CvtColor(srcMat, grayMat, ColorConversionCodes.BGR2GRAY); | |
Cv2.EqualizeHist(grayMat, grayMat); | |
var faces = Cascade.DetectMultiScale(grayMat); | |
if (faces == null) return srcMat; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment