本文整理汇总了C++中FlowField::Size方法的典型用法代码示例。如果您正苦于以下问题:C++ FlowField::Size方法的具体用法?C++ FlowField::Size怎么用?C++ FlowField::Size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FlowField
的用法示例。
在下文中一共展示了FlowField::Size方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CalcAngularError
double FlowField::CalcAngularError(FlowField &t){
std::pair<int, int> size = Size();
double amount = 0;
double tmp1 = 0;
double tmp2 = 0;
double sum_l2 = 0;
double sum_ang = 0;
// make sure both flow field have same size
if (size != t.Size()){
std::cout << "Dimensions in CalcAngularError dont match" << std::endl;
std::exit(1);
}
for (int i = 0; i < size.first; i++) {
for (int j = 0; j < size.second; j++){
// test if reference flow vector exists
if (t.u[i][j] != 100.0 || t.v[i][j] != 100.0){
amount++;
tmp1 = t.u[i][j] - u[i][j];
tmp2 = t.v[i][j] - v[i][j];
sum_l2 += sqrt(tmp1*tmp1 + tmp2*tmp2);
tmp1 = (t.u[i][j] * u[i][j] + t.v[i][j] * v[i][j] + 1.0)
/ sqrt( (t.u[i][j] * t.u[i][j] + t.v[i][j] * t.v[i][j] + 1.0)
* (u[i][j] * u[i][j] + v[i][j] * v[i][j] + 1.0) );
if (tmp1 > 1.0) tmp1 = 1.0;
if (tmp1 < - 1.0) tmp1 = - 1.0;
sum_ang += acos(tmp1) * 180.0/M_PI;
}
}
}
return sum_ang / amount;
}