diff options
Diffstat (limited to 'SD-VBS/common/c/fFind3.c')
-rw-r--r-- | SD-VBS/common/c/fFind3.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/SD-VBS/common/c/fFind3.c b/SD-VBS/common/c/fFind3.c new file mode 100644 index 0000000..a783bae --- /dev/null +++ b/SD-VBS/common/c/fFind3.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /******************************** | ||
2 | Author: Sravanthi Kota Venkata | ||
3 | ********************************/ | ||
4 | |||
5 | #include "sdvbs_common.h" | ||
6 | |||
7 | F2D* fFind3(F2D* in) | ||
8 | { | ||
9 | int r, k, y, x, i, j; | ||
10 | F2D *points; | ||
11 | |||
12 | y = in->height; | ||
13 | x = in->width; | ||
14 | |||
15 | r = 0; | ||
16 | for(i=0; i<y; i++) | ||
17 | { | ||
18 | for(j=0; j<x; j++) | ||
19 | { | ||
20 | if(subsref(in,i,j) != 0) | ||
21 | r++; | ||
22 | } | ||
23 | } | ||
24 | |||
25 | points = fSetArray(r, 3, 0); | ||
26 | |||
27 | k = 0; | ||
28 | for(j=0; j<x; j++) | ||
29 | { | ||
30 | for(i=0; i<y; i++) | ||
31 | { | ||
32 | if( subsref(in,i,j) != 0) | ||
33 | { | ||
34 | subsref(points,k,0) = j*1.0; | ||
35 | subsref(points,k,1) = i*1.0; | ||
36 | subsref(points,k,2) = subsref(in,i,j); | ||
37 | k++; | ||
38 | } | ||
39 | } | ||
40 | } | ||
41 | |||
42 | return points; | ||
43 | } | ||
44 | |||
45 | |||
46 | |||