Commit 2b10d15c85226a29b8b10bd83f9f2820baca8452

Authored by David Mayerich
1 parent f1eb102e

updated framework for metrics

Showing 3 changed files with 3 additions and 3 deletions   Show diff stats
envi/bil.h
... ... @@ -411,7 +411,7 @@ public:
411 411  
412 412 lp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T))); //memory allocation
413 413 rp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
414   - heigth = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
  414 + result = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
415 415  
416 416 band(lp, lb); //get the data of the left bounbd and the right bound
417 417 band(rp, rb);
... ...
envi/bip.h
... ... @@ -498,7 +498,7 @@ public:
498 498  
499 499 lp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T))); //memory allocation
500 500 rp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
501   - heigth = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
  501 + result = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
502 502  
503 503 band(lp, lb); //get the data of the left bounbd and the right bound
504 504 band(rp, rb);
... ...
envi/bsq.h
... ... @@ -333,7 +333,7 @@ public:
333 333  
334 334 lp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T))); //memory allocation
335 335 rp = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
336   - heigth = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
  336 + result = (T*) malloc(sizeof(R[0] * R[1] * sizeof(T)));
337 337  
338 338 band(lp, lb); //get the data of the left bounbd and the right bound
339 339 band(rp, rb);
... ...