0
私は"特徴"行列の行と列を持つMat
の行列を持ち、その中に値を挿入しました。OpenCVを使用したイメージ行列の行をシャッフル
今、私は行列の行をシャッフルしたいと思います。行をシャッフルする方法はありますか?a guide on how to do this in Java?
int rows = 20;
int cols = 1;
int index = 0;
Mat Features = new Mat(rows, cols, CvType.CV_64F);
for (int i = 0; i < rows; i++) {
if (i < 10)
Features.put(i, 0, responseA[i]);
if (i >= 10) {
Features.put(i, 0, responseB[index]);
index++;
}
}