gpt4 book ai didi

c++ - Matlab 到 OpenCV 的转换 - 优化?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:58:06 25 4
gpt4 key购买 nike

我正在将 Matlab 代码转换为 OpenCV“C/cpp”代码。我有一些疑问如下。

A = [ 2; 10;  7;  1;  3;  6; 10; 10;  2; 10];
ind = [10; 5; 9; 2];

B 是 A 的子矩阵;矩阵 B 的元素是 A 在 ind 中指定位置的元素。

B = [10 3; 2; 10];

在 Matlab 中,我只是使用

B = A(ind);

在 C 中使用 OpenCV,

for ( int i = 0; i < ind.rows; i++) {
B.at<int>(i,0) = A.at<int>(ind.at<int>(i,0), 0);
}

有没有不用for循环的方法呢?

最佳答案

如果您正在寻找一种整洁的复制方式。我建议你定义一个函数这是在给定位置复制的类似 STL 的实现

#include<vector>
#include<cstdio>

using namespace std;
/**
* Copies the elements all elements of B to A at given positions.
* indexing array ranges [ind_first, ind_lat)
* e.g
* int A[]= {0, 2, 10, 7, 1, 3, 6, 10, 10, 2, 10};
* int B[] = {-1, -1, -1, -1};
* int ind[] = {10, 5, 9, 2};
* copyat(B, A, &ind[0], &ind[3]);
* // results: A:[0,2,10,7,1,-1,6,10,10,-1,-1]
*/
template<class InputIterator, class OutputIterator, class IndexIterator>
OutputIterator copyat (InputIterator src_first,
OutputIterator dest_first,
IndexIterator ind_first,
IndexIterator ind_last)
{
while(ind_first!=ind_last) {
*(dest_first + *ind_first) = *(src_first);
++ind_first;
}
return (dest_first+*ind_first);
}


int main()
{
int A[]= {0, 2, 10, 7, 1, 3, 6, 10, 10, 2, 10};
int B[] = {-1, -1, -1, -1};
int ind[] = {10, 5, 9, 2};

copyat(B, A, &ind[0], &ind[3]);

printf("A:[");
for(int i=0; i<10; i++)
printf("%d,", A[i]);
printf("%d]\n",A[10]);
}

关于c++ - Matlab 到 OpenCV 的转换 - 优化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14873874/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com