done some cleanup
This commit is contained in:
parent
36f1ae58d2
commit
89c7f9f2ce
|
@ -14,21 +14,23 @@
|
||||||
|
|
||||||
#define NUMBER_OF_SAMPLES 500
|
#define NUMBER_OF_SAMPLES 500
|
||||||
#define WINDOWSIZE 5
|
#define WINDOWSIZE 5
|
||||||
#define tracking 40 //Count of weights
|
|
||||||
#define learnrate 0.8
|
#define learnrate 0.8
|
||||||
#define PURE_WEIGHTS 0
|
|
||||||
#define USED_WEIGHTS 1
|
|
||||||
#define RESULTS 3
|
|
||||||
#define DIRECT_PREDECESSOR 2
|
|
||||||
#define LOCAL_MEAN 4
|
|
||||||
#define TEST_VALUES 5
|
|
||||||
#define DIFFERENTIAL_PREDECESSOR 6
|
|
||||||
#define RGB_COLOR 255
|
#define RGB_COLOR 255
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#include <BaseTsd.h>
|
#include <BaseTsd.h>
|
||||||
typedef SSIZE_T ssize_t;
|
typedef SSIZE_T ssize_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
enum fileSuffix_t{ // used in conjunction with mkFileName()
|
||||||
|
PURE_WEIGHTS,
|
||||||
|
USED_WEIGHTS,
|
||||||
|
DIRECT_PREDECESSOR,
|
||||||
|
RESULTS,
|
||||||
|
LOCAL_MEAN,
|
||||||
|
TEST_VALUES,
|
||||||
|
DIFFERENTIAL_PREDECESSOR
|
||||||
|
};
|
||||||
|
|
||||||
//double x[] = { 0.0 };
|
//double x[] = { 0.0 };
|
||||||
double xSamples[NUMBER_OF_SAMPLES] = { 0.0 };
|
double xSamples[NUMBER_OF_SAMPLES] = { 0.0 };
|
||||||
|
|
||||||
|
@ -88,7 +90,6 @@ int main( void ) {
|
||||||
FILE* fp5 = fopen(fileName, "w");
|
FILE* fp5 = fopen(fileName, "w");
|
||||||
xLength = ppmColorChannel(fp5, image);
|
xLength = ppmColorChannel(fp5, image);
|
||||||
printf("%d\n", xLength);
|
printf("%d\n", xLength);
|
||||||
|
|
||||||
FILE* fp6 = fopen(fileName, "r");
|
FILE* fp6 = fopen(fileName, "r");
|
||||||
colorSamples(fp6);
|
colorSamples(fp6);
|
||||||
|
|
||||||
|
@ -98,7 +99,6 @@ int main( void ) {
|
||||||
weights[k][i] = rndm(); // Init weights
|
weights[k][i] = rndm(); // Init weights
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mkFileName(fileName, sizeof(fileName), PURE_WEIGHTS);
|
mkFileName(fileName, sizeof(fileName), PURE_WEIGHTS);
|
||||||
// save plain test_array before math magic happens
|
// save plain test_array before math magic happens
|
||||||
FILE *fp0 = fopen(fileName, "w");
|
FILE *fp0 = fopen(fileName, "w");
|
||||||
|
@ -108,12 +108,9 @@ int main( void ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose(fp0);
|
fclose(fp0);
|
||||||
|
|
||||||
// math magic
|
// math magic
|
||||||
localMean(weights);
|
localMean(weights);
|
||||||
//memcpy(local_weights, weights, sizeof(double) * WINDOWSIZE * NUMBER_OF_SAMPLES);
|
|
||||||
directPredecessor(weights);
|
directPredecessor(weights);
|
||||||
//memcpy(local_weights, weights, sizeof(double) * WINDOWSIZE * NUMBER_OF_SAMPLES);
|
|
||||||
differentialPredecessor(weights);
|
differentialPredecessor(weights);
|
||||||
mkSvgGraph(points);
|
mkSvgGraph(points);
|
||||||
// save test_array after math magic happened
|
// save test_array after math magic happened
|
||||||
|
|
Loading…
Reference in New Issue