mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
fixed parser bug.
fixed TBB version in LatentSVM. example works ok.
This commit is contained in:
parent
a9508d2f67
commit
c3e9d0dd7e
@ -671,11 +671,11 @@ void parserModel(FILE * xmlf, CvLSVMFilterObject *** model, int *last, int *max,
|
||||
* b = bb;
|
||||
* count = N_comp + 1;
|
||||
} else {
|
||||
cmp = (int *)malloc(sizeof(int) * (N_comp + 1));
|
||||
cmp = (int *)malloc(sizeof(int) * (N_comp + 1));
|
||||
bb = (float *)malloc(sizeof(float) * (N_comp + 1));
|
||||
for(ii = 0; ii < N_comp; ii++){
|
||||
cmp[i] = (* comp)[ii];
|
||||
bb [i] = (* b )[ii];
|
||||
cmp[ii] = (* comp)[ii];
|
||||
bb [ii] = (* b )[ii];
|
||||
}
|
||||
free(* comp);
|
||||
free(* b );
|
||||
|
@ -1575,7 +1575,7 @@ int tbbThresholdFunctionalScore(const CvLSVMFilterObject **all_F, int n,
|
||||
// Computation the number of levels for seaching object,
|
||||
// first lambda-levels are used for computation values
|
||||
// of score function for each position of root filter
|
||||
numLevels = H->numLevels;
|
||||
numLevels = H->numLevels - LAMBDA;
|
||||
kLevels = (int *)malloc(sizeof(int) * threadsNum);
|
||||
procLevels = (int **)malloc(sizeof(int*) * threadsNum);
|
||||
computeBorderSize(maxXBorder, maxYBorder, &bx, &by);
|
||||
|
Loading…
Reference in New Issue
Block a user