Tagged Questions
12
votes
4answers
1k views
Help with Perceptron
Here is my perceptron implementation in ANSI C:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float randomFloat()
{
srand(time(NULL));
float r = (float)rand() / ...
6
votes
1answer
385 views
OpenCV::ML - is it possible to tell openCV which parts of data we want to send to which neuron?
So here is shown a simple example - 2 floats as data + 1 float as output:
Layer 1: 2 neurons (2 inputs)
Layer 2: 3 neurons (hidden layer)
Layer 3: 3 neurons (hidden ...
3
votes
1answer
282 views
How to manage connections of neurons inside ANN using OpenCV::ML?
So there is grate sample (only one real sample we found). And it is quite limiting. It shows how to create an architecture of artificial neutral network where all neurons of one layer are connected ...
0
votes
1answer
318 views
Where to get a source example of creation of a Multi-layer Perceptron using openCV?
I need an example of Multi-layer Perceptron (with at least 3 layers) C/C++ programm using openCV. Where can I get one?