3

是否没有OpenCV随机打乱矩阵(按行排序)的功能?

输入:

1 2 3
4 5 6
7 8 9

输出:

4 5 6
7 8 9
1 2 3

cv::randShuffle 函数似乎只是随机排序整个数组中的元素我正在使用更新的 C++ API

4

1 回答 1

8

洗牌矩阵行的代码:

cv::Mat shuffleRows(const cv::Mat &matrix)
{
  std::vector <int> seeds;
  for (int cont = 0; cont < matrix.rows; cont++)
    seeds.push_back(cont);

  cv::randShuffle(seeds);

  cv::Mat output;
  for (int cont = 0; cont < matrix.rows; cont++)
    output.push_back(matrix.row(seeds[cont]));

  return output;
}
于 2014-04-18T10:43:33.400 回答