diff options
author | RossTheRoss <msattr@gmail.com> | 2019-04-03 11:44:45 -0500 |
---|---|---|
committer | RossTheRoss <msattr@gmail.com> | 2019-04-03 11:44:45 -0500 |
commit | fe3029e8d0c3270274d2c2f3b919d1bf8972012b (patch) | |
tree | 3c33e312dd1e5550d789a93e3183c1ba69a1afb5 /ee1301 | |
parent | Do more work (diff) | |
download | homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar.gz homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar.bz2 homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar.lz homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar.xz homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.tar.zst homework-fe3029e8d0c3270274d2c2f3b919d1bf8972012b.zip |
LOGIC CURRENTLY BROKE
Diffstat (limited to 'ee1301')
-rw-r--r-- | ee1301/wk5/hw5_directory/strap012_HW5C.cpp | 82 |
1 files changed, 64 insertions, 18 deletions
diff --git a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp index 701973a..716c413 100644 --- a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp +++ b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp @@ -6,28 +6,27 @@ using namespace std; ifstream fin; #define SIZE 100 -int maxRow = 0, maxColumn = 0; +int maxRow = -1, maxColumn = 0; void getInput(int input[SIZE][SIZE]); void makeNewArray(int oldArray[SIZE][SIZE], int newArray[SIZE][SIZE]); -void pixelAverage(int array[SIZE][SIZE]); +void pixelAverage(int inArray[SIZE][SIZE], int outArray[SIZE][SIZE]); void printArray(int array[SIZE][SIZE]); int main() { fin.open("testData.txt"); - int column = 0, row = 0; - int inputArray[SIZE][SIZE] = {0}; + int inputArray[SIZE][SIZE] = {0}, + outputArray[SIZE][SIZE] = {0}; getInput(inputArray); - int outputArray[SIZE][SIZE] = {0}; makeNewArray(inputArray, outputArray); - pixelAverage(outputArray); + pixelAverage(inputArray, outputArray); printArray(outputArray); } void getInput(int input[SIZE][SIZE]) { string test, temp1; int temp2=0; //I would mainly like to thank some random person on StackOverflow for solving my problem - while (getline(fin,test)) { - temp2 = 0; + while (getline(cin,test)) { + temp2 = -2; istringstream ss(test); while(getline(ss,temp1,' ')) { temp2++; @@ -43,28 +42,75 @@ void getInput(int input[SIZE][SIZE]) { void makeNewArray(int oldArray[SIZE][SIZE], int newArray[SIZE][SIZE]) { for (int i = 0; i < SIZE-1; i++) { - for (int j = 2; j < SIZE-1; j++) { + for (int j = 0; j < SIZE-1; j++) { newArray[i][j] = oldArray[i-1][j-1]; } } } -void pixelAverage(int array[SIZE][SIZE]) { - for (int i = 0; i < maxRow; i++) { - for (int j = 0; j < maxColumn; j++) { - +void pixelAverage(int inArray[SIZE][SIZE], int outArray[SIZE][SIZE]) { + int sum = 0, n = 0, average, timesRan=0; //n is the number of surrounding pixels + for (int i = -1; i < maxRow-1; i++) { + for (int j = -1; j < maxColumn-1; j++) { + sum=0; n=0; + if ( !((i-1)<1) ) { + cout << "LEFT)" << inArray[i-1][j] << " "; + sum += inArray[i-1][j]; + n++; + } + if ( (i+1)<maxRow ) { + cout << "DOWN)" << inArray[i+1][j] << " "; + sum += inArray[i+1][j]; + n++; + } + if ( !((j-1)<1) ) { + cout << "UP)" << inArray[i][j-1] << " "; + sum += inArray[i][j-1]; + n++; + } + if ( (j+1)<maxColumn ) { + cout << "RIGHT)" << inArray[i][j+1] << " "; + sum += inArray[i][j+1]; + n++; + } + if ( !((i-1)<0) && !((j-1)<0) ) { + cout << "UPLEFT)" << inArray[i-1][j-1] << " "; + sum += inArray[i-1][j-1]; + n++; + } + if ( !((i-1)<0) && ( (j+1)<maxColumn ) ) { + cout << "DOWNLEFT)" << inArray[i-1][j+1] << " "; + sum += inArray[i-1][j+1]; + n++; + } + if ( (i+1)<maxRow && (j+1)<maxColumn ) { + cout << "DOWNRIGHT)" << inArray[i+1][j+1] << " "; + sum += inArray[i+1][j+1]; + n++; + } + if ( !((j-1)<0) && (i+1)<maxRow) { + cout << "UPRIGHT)" << inArray[i+1][j-1] << " "; + sum+=inArray[i+1][j-1]; + n++; + } + cout << inArray[i][j] << " "; + sum+=inArray[i][j]; + n++; + timesRan++; + average = sum/n; + cout << endl << sum << " " << n << " " << average << endl; + outArray[i+1][j+1]=average; } } + cout << timesRan << endl; } void printArray (int array[SIZE][SIZE]) { - //It is unknown why these for loops do not start at 0. - //Since they work for all 2D arrays with size<100, no negative effects are known. - for (int j = 1; j < maxRow; j++) + for (int i = 0; i < maxRow; i++) { - for (int i = 2; i < maxColumn; i++) + for (int j = 0; j < maxColumn; j++) { - cout << array[j][i] << " "; + cout << array[i][j] << " "; } cout << endl; } |