-
Notifications
You must be signed in to change notification settings - Fork 0
/
Filter Traversal on Image Array in C++.cpp
78 lines (78 loc) · 1.52 KB
/
Filter Traversal on Image Array in C++.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//#include<iostream>
//using namespace std;
//const int SIZE1=7;
//const int SIZE2=3;
//const int SIZE3 = 5;
//int main()
//{
// int arr[SIZE1][SIZE1];
// int filter[SIZE2][SIZE2];
// int res_arr[SIZE3][SIZE3];
// for (int i = 0; i < SIZE1; i++)
// {
// for (int j = 0; j < SIZE1; j++)
// {
// cout << "\nEnter Value for Array [" << i << "][" << j << "]:";
// cin >> arr[i][j];
// while (cin.fail())
// {
// cout << "\n Invalid Input..\nEnter Value for Array [" << i << "][" << j << "]:";
// cin >> arr[i][j];
// }
// }
// }
// for (int i = 0; i < SIZE2; i++)
// {
// for (int j = 0; j < SIZE2; j++)
// {
// cout << "\nEnter Value for Filter [" << i << "][" << j << "]:";
// cin >> filter[i][j];
// while (cin.fail())
// {
// cout << "\n Invalid Input..\nEnter Value for Filter [" << i << "][" << j << "]:";
// cin >> filter[i][j];
// }
// }
// }
// int sum = 0;
// for (int i = 1; i < SIZE1 - 1; i++)
// {
// for (int j = 1; j < SIZE1; j++)
// {
// int k = i - 1;
// int m = j - 1;
// for (int a = 0; a < SIZE2; a++)
// {
// for (int b = 0; b < SIZE2; b++)
// {
// sum += arr[k][m] * filter[a][b];
// m++;
//
// }
// k++;
// m = j - 1;
// }
// res_arr[i - 1][j - 1] = sum;
// sum = 0;
// }
// }
// cout << "\nResulting Array:\n";
// for (int i = 0; i < SIZE3; i++)
// {
// for (int j = 0; j < SIZE3; j++)
// {
// cout << res_arr[i][j] << " ";
//
// }
// cout << endl;
// }
// cout << "\nLoop Terminated";
// system("pause");
// return 0;
//
//
//
//
//
//
//}