Package org.opencv.video

Examples of org.opencv.video.BackgroundSubtractorMOG


   * @param history
   * @param nMixtures
   * @param backgroundRatio
   */
  public void startBackgroundSubtraction(int history, int nMixtures, double backgroundRatio){
    backgroundSubtractor = new BackgroundSubtractorMOG(history, nMixtures, backgroundRatio);
  }
View Full Code Here

TOP

Related Classes of org.opencv.video.BackgroundSubtractorMOG

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.