summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/c/fFind3.c
diff options
context:
space:
mode:
authorleochanj105 <leochanj@live.unc.edu>2020-10-19 23:09:30 -0400
committerleochanj105 <leochanj@live.unc.edu>2020-10-20 02:40:39 -0400
commitf618466c25d43f3bae9e40920273bf77de1e1149 (patch)
tree460e739e2165b8a9c37a9c7ab1b60f5874903543 /SD-VBS/common/c/fFind3.c
parent47ced4e96bbb782b9e780e8f2cfc637b2c21ff44 (diff)
initial sd-vbs
initial sd-vbs add sd-vbs sd-vbs
Diffstat (limited to 'SD-VBS/common/c/fFind3.c')
-rw-r--r--SD-VBS/common/c/fFind3.c46
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/********************************
2Author: Sravanthi Kota Venkata
3********************************/
4
5#include "sdvbs_common.h"
6
7F2D* 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