OCR/NeuralNetwork/toolsnetworks.h

20 lines
345 B
C
Raw Permalink Normal View History

2022-02-08 18:16:25 +00:00
#ifndef TOOLS__NETWORKS_H
#define TOOLS__NETWORKS_H
#include <SDL2/SDL.h>
#include "structure.h"
float my_rand(void);
void softmax(Neural_Network_Layer *layer);
char indiceToChar(int indice);
double sigmoid(double val);
double *imagetomatrix(char *str, int size);
double *segmentationtomatrix(SDL_Surface *loadedImage, int size);
#endif