Aquila  2.0 prealpha
Cognitive Robotics Architecture
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
somInterface.h
Go to the documentation of this file.
1 //##############################################################################################################################################################################################################//
2 //Aquila - An Open-Source GPU-Accelerated Toolkit for Cognitive and Neuro-Robotics Research //
3 // //
4 //Copyright (c) <2012>, <Martin Peniak - www.martinpeniak.com> //
5 //All rights reserved. //
6 // //
7 //Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: //
8 // //
9 // - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. //
10 // - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. //
11 // //
12 //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR //
13 //A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT //
14 //LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR //
15 //TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. //
16 // //
17 //The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted //
18 //as representing official policies,either expressed or implied, of the FreeBSD Project. //
19 //##############################################################################################################################################################################################################//
20 
21 #ifndef SOM_INTERFACE_H
22 #define SOM_INTERFACE_H
23 
24 #include "interface.h"
25 
27 class SOMInterface : public Interface
28 {
29  Q_OBJECT
30 
31 public:
32  SOMInterface(GUI *pGUI);
33 
34  void sendSubIterations(int numSubIterations);
35  void sendNumOutputs(int numOutputs);
36  void sendIterationsPause(int iterationPause);
37  void sendLearningRate(double learningRate);
38  void sendTrainingRequest(QString fileName);
39  void sendTrainingRequest(int numSamples, int numInputs, QVector<double> trainingData);
40  void sendSaveRequest(QString fileName);
41 
42 protected:
43  void processPortData();
44 
45 private:
46  void processMap();
47 
48 public slots:
49  void sendParameters(float learningRate, int numSubIterations, int numOutputs, int iterationPause);
50  void sendVisualiseLearning(int visualiseLearning);
51 
52 signals:
53  void mapReceived(QVector<float> map);
54  void numInputsReceived(int numInputs);
55  void trainingTimeReceived(float time);
56  void dataPointLimitsReceived(float low, float hi);
57  void parametersReceived(float learningRate, int numSubIterations, int numOutputs, int iterationPause);
58 };
59 
60 #endif//SOM_INTERFACE_H