From 3498e3270194093098f9b8275901517fa2f9fa32 Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Fri, 23 Oct 2020 16:42:53 -0400 Subject: Squashed commit sd-vbs from Leo: - Fixes SD-VBS build with LITMUS 1 defined - Fixes memory leak in stitch and tracking benchmarks - Adds initial case-study script and configurations --- SD-VBS/benchmarks/tracking/src/c/script_tracking.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'SD-VBS/benchmarks/tracking/src') diff --git a/SD-VBS/benchmarks/tracking/src/c/script_tracking.c b/SD-VBS/benchmarks/tracking/src/c/script_tracking.c index 2938126..c0af2d7 100644 --- a/SD-VBS/benchmarks/tracking/src/c/script_tracking.c +++ b/SD-VBS/benchmarks/tracking/src/c/script_tracking.c @@ -93,9 +93,8 @@ int main(int argc, char* argv[]) I2D* images[counter]; /** Read input image **/ - for(count=1; count<=counter; count++) - { - /** Read image **/ + for(count=1; count<=counter; count++){ + /** Read Image **/ scanf("%s", im1); images[count - 1] = readImage(im1); if(count == 1) Ic = readImage(im1); @@ -227,7 +226,6 @@ int main(int argc, char* argv[]) fFreeHandle(newpoints); } } - #ifdef CHECK /* Self checking */ { -- cgit v1.2.2