Example usage for org.opencv.core Core repeat

List of usage examples for org.opencv.core Core repeat

Introduction

In this page you can find the example usage for org.opencv.core Core repeat.

Prototype

public static void repeat(Mat src, int ny, int nx, Mat dst) 

Source Link

Usage

From source file:ch.zhaw.facerecognitionlibrary.Recognition.Eigenfaces.java

License:Open Source License

private void computePhi() {
    Mat Psi_repeated = new Mat();
    Core.repeat(Psi, Gamma.rows(), 1, Psi_repeated);
    Core.subtract(Gamma, Psi_repeated, Phi);
}