mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 14:13:15 +08:00
Fixed allocated vector size in ML ANN algorithm
- updated return value of points_classifier sample
This commit is contained in:
parent
4c52dfc956
commit
c85197da55
@ -731,7 +731,7 @@ public:
|
||||
for( i = 0; i < l_count; i++ )
|
||||
{
|
||||
int n = layer_sizes[i];
|
||||
x[i].resize(n);
|
||||
x[i].resize(n+1);
|
||||
df[i].resize(n);
|
||||
dw[i].create(weights[i].size(), CV_64F);
|
||||
}
|
||||
|
@ -398,5 +398,5 @@ int main()
|
||||
}
|
||||
}
|
||||
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user