Financial Prediction
This application demonstrates the usage of Neural Networks for predicting Market Share Values.
This "forecasting" capability makes them a perfect tool for several types of applications:
- Function interpolation and approximation
- Prediction of trends in numerical data
- Prediction of movements in financial markets
All the examples are actually very similar, because in mathematical terms, you are trying to define a prediction function F(X1, X2, ..., Xn), which according to the input data (vector [X1, X2, ..., Xn]), is going to "guess" (interpolate) the output Y. The most exciting domain of prediction lies in the field of financial market.
2D Organizing
This very simple application demonstrates self organizing feature of Kohonen artificial neural networks. Initially the application creates a neural network with neurons' weights initialized to coordinates of points in rectangular grid. After that the network is continuously fed by coordinates of previously generated random points. While these points are presented to the network, it does organization of its structure. Visualizing the neural network by treating neurons' weights as coordinates of points shows a picture, which is close to the picture of randomly generated map, which was fed to the network.
SOM Coloring
This application represents another sample showing self organization feature of Kohonen neural networks and building color clusters. All network's neurons have 3 inputs and initially 3 corresponding weights of each neuron are initialized randomly in the [0, 255] range. Weights of each neuron may be treated as RGB tuple, which means that initially neural network represents a rectangle of random colors. During training phase, the network is fed by random colors, which results to network's self organizing and forming color clusters.
Recognition of hand gestures in real time
Recognition of hand gestures in real time, based on neural networks (multilayer perceptron, Hopfield NN)
As part of the application occurs pattern recognition (hand gestures), taken with the camera. Hand position in the image is determined by the color of pixels hand. For pattern recognition using neural networks (multilayer perceptron, Hopfield neural network). Recognition occurs in real time
This screenshot shows the main window of the application, as well as the recognition result is shown
This shows the settings window colors and choice of color spaces.
Mouse Gesture Recognition
Learning and recognition of mouse gestures using hidden Markov model-based classifiers and Hidden Conditional Random Fields.
Skin Recognition
This application demonstrates the usage of Image Processing Algorithms to Detect Human Skin in a picture, this can be used in a wide variety of AI projects.