Package jjil.algorithm

Examples of jjil.algorithm.DetectHaarMultiScale


      // Note: you can detect other features than frontal faces by
      // changing HCSB.txt in this directory to one of the files in
      // the OtherCascades subdirectory. See the README file there
      // for more information.
        InputStream is  = getClass().getResourceAsStream("HCSB.txt");
        this.dh = new DetectHaarMultiScale(is, nMinScale, nMaxScale);
    }
View Full Code Here


     */
    public DetectHaarParam(Resources r, int nMinScale, int nMaxScale)
        throws IllegalArgumentException
    {
        InputStream is  = r.openRawResource(R.raw.hcsb);
        this.dh = new DetectHaarMultiScale(is, nMinScale, nMaxScale);
    }
View Full Code Here

TOP

Related Classes of jjil.algorithm.DetectHaarMultiScale

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.