├── .gitignore ├── AUTHORS ├── COPYING ├── INSTALL ├── README ├── cmake-modules ├── FindOpenViBE.cmake ├── FindOpenViBEModuleAutomaton.cmake ├── FindOpenViBEModuleEBML.cmake ├── FindOpenViBEModuleFS.cmake ├── FindOpenViBEModuleSocket.cmake ├── FindOpenViBEModuleStream.cmake ├── FindOpenViBEModuleSystem.cmake ├── FindOpenViBEModuleXML.cmake ├── FindOpenViBEPluginsGlobalDefines.cmake ├── FindOpenViBEToolkit.cmake ├── FindThirdPartyBLiFF.cmake ├── FindThirdPartyBoost.cmake ├── FindThirdPartyBoost_Regex.cmake ├── FindThirdPartyBoost_Thread.cmake ├── FindThirdPartyCEGUI.cmake ├── FindThirdPartyEmokit.cmake ├── FindThirdPartyEmotivAPI.cmake ├── FindThirdPartyExpat.cmake ├── FindThirdPartyGMobiLabPlusAPI.cmake ├── FindThirdPartyGSL.cmake ├── FindThirdPartyGTK.cmake ├── FindThirdPartyGUSBampCAPI.cmake ├── FindThirdPartyITPP.cmake ├── FindThirdPartyLibusb-1.0.cmake ├── FindThirdPartyLua.cmake ├── FindThirdPartyMatlab.cmake ├── FindThirdPartyMcrypt.cmake ├── FindThirdPartyOgre3D.cmake ├── FindThirdPartyOpenAL.cmake ├── FindThirdPartyPkgConfig.cmake ├── FindThirdPartyPython.cmake ├── FindThirdPartyThinkGearAPI.cmake ├── FindThirdPartyTorch.cmake ├── FindThirdPartyUSBFirstAmpAPI.cmake ├── FindThirdPartyVRPN.cmake ├── FindThirdPartyX11.cmake └── ovp_global_defines.h ├── openvibe-applications ├── acquisition-server │ ├── branches │ │ ├── wip-emaby │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── NeXusDLL.dll │ │ │ │ ├── RTInst.dll │ │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ │ ├── interface-channel-names.ui │ │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ │ ├── interface.ui │ │ │ │ │ ├── scripts │ │ │ │ │ ├── egi-default-initialize.script │ │ │ │ │ ├── egi-default-start.script │ │ │ │ │ ├── egi-default-stop.script │ │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainproducts-brainampseries │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ │ └── ovas_defines_brainamp_series.h │ │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ │ ├── brainproducts-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── egi-ampserver │ │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ │ ├── emotiv-epoc │ │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── generic-sawtooth │ │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ │ ├── gtec-gmobilabplus │ │ │ │ ├── README │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── micromed-systemplusevolution │ │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── neurosky-mindset │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ ├── ovas_main.cpp │ │ │ │ └── tmsi-refa32b │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ │ └── ovasCDriverTMSiRefa32B.h │ │ ├── wip-gtec-multiamp │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── NeXusDLL.dll │ │ │ │ ├── RTInst.dll │ │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ │ ├── interface-GTec-GUSBamp-multiamp.ui │ │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ │ ├── interface-channel-names.ui │ │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ │ ├── interface.ui │ │ │ │ │ ├── scripts │ │ │ │ │ ├── egi-default-initialize.script │ │ │ │ │ ├── egi-default-start.script │ │ │ │ │ ├── egi-default-stop.script │ │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainproducts-brainampseries │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ │ └── ovas_defines_brainamp_series.h │ │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ │ ├── brainproducts-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── egi-ampserver │ │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ │ ├── emotiv-epoc │ │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── generic-raw-reader │ │ │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ │ │ ├── ovasCConfigurationGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ │ │ ├── ovasCDriverGenericRawFileReader.h │ │ │ │ ├── ovasCDriverGenericRawReader.cpp │ │ │ │ ├── ovasCDriverGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ │ │ ├── generic-sawtooth │ │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ │ ├── gtec-gmobilabplus │ │ │ │ ├── README │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCConfigurationGTecGUSBampMultiamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBampMultiamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ ├── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBampMultiamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBampMultiamp.h │ │ │ │ ├── micromed-systemplusevolution │ │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── neurosky-mindset │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ │ ├── openal-mono16bit-audiocapture │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ │ │ └── ovasCDriverOpenALAudioCapture.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ ├── ovas_main.cpp │ │ │ │ └── tmsi-refa32b │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ │ └── ovasCDriverTMSiRefa32B.h │ │ ├── wip-jfruitet │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ └── NeXusDLL.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-VAmp-FastModeSettings.glade │ │ │ │ │ ├── interface-BrainProducts-VAmp.glade │ │ │ │ │ ├── interface-Brainamp-Standard.glade │ │ │ │ │ ├── interface-CtfVsm-Meg.glade │ │ │ │ │ ├── interface-GTec-GUSBamp.glade │ │ │ │ │ ├── interface-Generic-Oscillator.glade │ │ │ │ │ ├── interface-Micromed-IntraEEG.glade │ │ │ │ │ ├── interface-MindMedia-NeXus32B.glade │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.glade │ │ │ │ │ ├── interface-channel-names.glade │ │ │ │ │ ├── interface.glade │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainamp-standard │ │ │ │ ├── ovasCDriverBrainampStandard.cpp │ │ │ │ └── ovasCDriverBrainampStandard.h │ │ │ │ ├── brainamp-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── doc │ │ │ │ ├── AcquisitionServerOverview.dox │ │ │ │ ├── CreatingANewDriver.dox │ │ │ │ ├── acquisition_server_gui.png │ │ │ │ ├── driver_automate.dia │ │ │ │ ├── driver_automate.png │ │ │ │ └── driver_settings.png │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── micromed-intraeeg │ │ │ │ ├── ovasCDriverMicromedIntraEEG.cpp │ │ │ │ └── ovasCDriverMicromedIntraEEG.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCConfigurationGlade.cpp │ │ │ │ ├── ovasCConfigurationGlade.h │ │ │ │ ├── ovasCConfigurationNetworkGlade.cpp │ │ │ │ ├── ovasCConfigurationNetworkGlade.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ └── ovas_main.cpp │ │ ├── wip-jlegeny-fieldtrip │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── NeXusDLL.dll │ │ │ │ ├── RTInst.dll │ │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ │ ├── interface-Fieldtrip.ui │ │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ │ ├── interface-channel-names.ui │ │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ │ ├── interface.ui │ │ │ │ │ ├── scripts │ │ │ │ │ ├── egi-default-initialize.script │ │ │ │ │ ├── egi-default-start.script │ │ │ │ │ ├── egi-default-stop.script │ │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainproducts-brainampseries │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ │ └── ovas_defines_brainamp_series.h │ │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ │ ├── brainproducts-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── egi-ampserver │ │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ │ ├── emotiv-epoc │ │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ │ ├── field-trip-protocol │ │ │ │ ├── GetCpuTime.h │ │ │ │ ├── fieldtrip │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── cleanup.c │ │ │ │ │ ├── clientrequest.c │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── dmarequest.c │ │ │ │ │ ├── endianutil.c │ │ │ │ │ ├── extern.c │ │ │ │ │ ├── extern.h │ │ │ │ │ ├── message.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform_includes.h │ │ │ │ │ ├── printstruct.c │ │ │ │ │ ├── rdadefs.h │ │ │ │ │ ├── rdaserver.c │ │ │ │ │ ├── rdaserver.h │ │ │ │ │ ├── socketserver.c │ │ │ │ │ ├── socketserver.h │ │ │ │ │ ├── tcprequest.c │ │ │ │ │ ├── tiaserver.c │ │ │ │ │ ├── tiaserver.h │ │ │ │ │ ├── util.c │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── gettimeofday.c │ │ │ │ │ │ ├── gettimeofday.h │ │ │ │ │ │ ├── poll.c │ │ │ │ │ │ └── stdint.h │ │ │ │ ├── ovasCConfigurationFieldtrip.cpp │ │ │ │ ├── ovasCConfigurationFieldtrip.h │ │ │ │ ├── ovasCDriverFieldtrip.cpp │ │ │ │ └── ovasCDriverFieldtrip.h │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── generic-raw-reader │ │ │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ │ │ ├── ovasCConfigurationGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ │ │ ├── ovasCDriverGenericRawFileReader.h │ │ │ │ ├── ovasCDriverGenericRawReader.cpp │ │ │ │ ├── ovasCDriverGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ │ │ ├── generic-sawtooth │ │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ │ ├── gtec-gmobilabplus │ │ │ │ ├── README │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── micromed-systemplusevolution │ │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── neurosky-mindset │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ │ ├── openal-mono16bit-audiocapture │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ │ │ └── ovasCDriverOpenALAudioCapture.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ ├── ovas_main.cpp │ │ │ │ └── tmsi-refa32b │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ │ └── ovasCDriverTMSiRefa32B.h │ │ ├── wip-jlegeny-gtec-event-channel │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── NeXusDLL.dll │ │ │ │ ├── RTInst.dll │ │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ │ ├── interface-channel-names.ui │ │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ │ ├── interface.ui │ │ │ │ │ ├── scripts │ │ │ │ │ ├── egi-default-initialize.script │ │ │ │ │ ├── egi-default-start.script │ │ │ │ │ ├── egi-default-stop.script │ │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainproducts-brainampseries │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ │ └── ovas_defines_brainamp_series.h │ │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ │ ├── brainproducts-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── egi-ampserver │ │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ │ ├── emotiv-epoc │ │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── generic-raw-reader │ │ │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ │ │ ├── ovasCConfigurationGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ │ │ ├── ovasCDriverGenericRawFileReader.h │ │ │ │ ├── ovasCDriverGenericRawReader.cpp │ │ │ │ ├── ovasCDriverGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ │ │ ├── generic-sawtooth │ │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ │ ├── gtec-gmobilabplus │ │ │ │ ├── README │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── micromed-systemplusevolution │ │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── neurosky-mindset │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ │ ├── openal-mono16bit-audiocapture │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ │ │ └── ovasCDriverOpenALAudioCapture.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ ├── ovas_main.cpp │ │ │ │ └── tmsi-refa32b │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ │ └── ovasCDriverTMSiRefa32B.h │ │ ├── wip-jlegeny-software-tagging │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── NeXusDLL.dll │ │ │ │ ├── RTInst.dll │ │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ │ └── openvibe-applications │ │ │ │ │ └── acquisition-server │ │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ │ ├── electrode-names.txt │ │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ │ ├── interface-channel-names.ui │ │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ │ ├── interface.ui │ │ │ │ │ ├── scripts │ │ │ │ │ ├── egi-default-initialize.script │ │ │ │ │ ├── egi-default-start.script │ │ │ │ │ ├── egi-default-stop.script │ │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ │ ├── brainproducts-brainampseries │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ │ └── ovas_defines_brainamp_series.h │ │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ │ ├── brainproducts-vamp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ │ ├── ctfvsm-meg │ │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ │ ├── egi-ampserver │ │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ │ ├── emotiv-epoc │ │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ │ ├── generic-oscilator │ │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ │ ├── generic-raw-reader │ │ │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ │ │ ├── ovasCConfigurationGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ │ │ ├── ovasCDriverGenericRawFileReader.h │ │ │ │ ├── ovasCDriverGenericRawReader.cpp │ │ │ │ ├── ovasCDriverGenericRawReader.h │ │ │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ │ │ ├── generic-sawtooth │ │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ │ ├── gtec-gmobilabplus │ │ │ │ ├── README │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ │ ├── gtec-gusbamp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ │ ├── micromed-systemplusevolution │ │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ │ ├── mindmedia-nexus32b │ │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ │ ├── neurosky-mindset │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ │ ├── openal-mono16bit-audiocapture │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ │ │ └── ovasCDriverOpenALAudioCapture.h │ │ │ │ ├── openeeg-modulareeg │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ │ ├── ovasCAcquisitionServer.h │ │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ │ ├── ovasCHeader.cpp │ │ │ │ ├── ovasCHeader.h │ │ │ │ ├── ovasIDriver.h │ │ │ │ ├── ovasIHeader.h │ │ │ │ ├── ovas_base.h │ │ │ │ ├── ovas_defines.h │ │ │ │ ├── ovas_main.cpp │ │ │ │ └── tmsi-refa32b │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ │ └── ovasCDriverTMSiRefa32B.h │ │ └── wip-lbonnet-micromed │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ ├── NeXusDLL.dll │ │ │ ├── RTInst.dll │ │ │ └── dllMicromed.dll │ │ │ ├── share │ │ │ └── openvibe-applications │ │ │ │ └── acquisition-server │ │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ │ ├── electrode-names.txt │ │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ │ ├── interface-channel-names.ui │ │ │ │ ├── interface-egi-ampserver.ui │ │ │ │ ├── interface.ui │ │ │ │ ├── scripts │ │ │ │ ├── egi-default-initialize.script │ │ │ │ ├── egi-default-start.script │ │ │ │ ├── egi-default-stop.script │ │ │ │ └── egi-default-uninitialize.script │ │ │ │ └── vamp.bmp │ │ │ └── src │ │ │ ├── brainproducts-brainampseries │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ │ └── ovas_defines_brainamp_series.h │ │ │ ├── brainproducts-brainvisionrecorder │ │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ │ ├── brainproducts-vamp │ │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ │ ├── ctfvsm-meg │ │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ │ └── ovasCDriverCtfVsmMeg.h │ │ │ ├── egi-ampserver │ │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ │ └── ovasCDriverEGIAmpServer.h │ │ │ ├── emotiv-epoc │ │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ │ └── ovasCDriverEmotivEPOC.h │ │ │ ├── generic-oscilator │ │ │ ├── ovasCDriverGenericOscilator.cpp │ │ │ └── ovasCDriverGenericOscilator.h │ │ │ ├── generic-raw-reader │ │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ │ ├── ovasCConfigurationGenericRawReader.h │ │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ │ ├── ovasCDriverGenericRawFileReader.h │ │ │ ├── ovasCDriverGenericRawReader.cpp │ │ │ ├── ovasCDriverGenericRawReader.h │ │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ │ ├── generic-sawtooth │ │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ │ └── ovasCDriverGenericSawTooth.h │ │ │ ├── gtec-gmobilabplus │ │ │ ├── README │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ │ ├── gtec-gusbamp │ │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ │ └── ovasCDriverGTecGUSBamp.h │ │ │ ├── micromed-systemplusevolution │ │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ │ ├── mindmedia-nexus32b │ │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ │ ├── neurosky-mindset │ │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ │ └── ovasCDriverNeuroskyMindset.h │ │ │ ├── openal-mono16bit-audiocapture │ │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ │ └── ovasCDriverOpenALAudioCapture.h │ │ │ ├── openeeg-modulareeg │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ │ ├── ovasCAcquisitionServer.cpp │ │ │ ├── ovasCAcquisitionServer.h │ │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ │ ├── ovasCAcquisitionServerGUI.h │ │ │ ├── ovasCAcquisitionServerThread.h │ │ │ ├── ovasCConfigurationBuilder.cpp │ │ │ ├── ovasCConfigurationBuilder.h │ │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ │ ├── ovasCHeader.cpp │ │ │ ├── ovasCHeader.h │ │ │ ├── ovasIDriver.h │ │ │ ├── ovasIHeader.h │ │ │ ├── ovas_base.h │ │ │ ├── ovas_defines.h │ │ │ ├── ovas_main.cpp │ │ │ └── tmsi-refa32b │ │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ │ └── ovasCDriverTMSiRefa32B.h │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── bin │ │ ├── MitsarDll.dll │ │ ├── NeXusDLL.dll │ │ ├── RTInst.dll │ │ └── dllMicromed.dll │ │ ├── share │ │ └── openvibe-applications │ │ │ └── acquisition-server │ │ │ ├── capset-brainproducts-acticap32.txt │ │ │ ├── electrode-names.txt │ │ │ ├── interface-BrainProducts-BrainVisionRecorder.ui │ │ │ ├── interface-BrainProducts-BrainampSeries.ui │ │ │ ├── interface-BrainProducts-VAmp.ui │ │ │ ├── interface-CtfVsm-Meg.ui │ │ │ ├── interface-Emokit.ui │ │ │ ├── interface-Emotiv-EPOC.ui │ │ │ ├── interface-Fieldtrip.ui │ │ │ ├── interface-GTec-GMobiLabPlus.ui │ │ │ ├── interface-GTec-GUSBamp.ui │ │ │ ├── interface-Generic-Oscillator.ui │ │ │ ├── interface-Generic-RawFileReader.ui │ │ │ ├── interface-Generic-RawTelnetReader.ui │ │ │ ├── interface-Micromed-SystemPlusEvolution.ui │ │ │ ├── interface-MindMedia-NeXus32B.ui │ │ │ ├── interface-Mitsar-EEG202.ui │ │ │ ├── interface-Neurosky-Mindset.ui │ │ │ ├── interface-OpenALAudioCapture.ui │ │ │ ├── interface-OpenEEG-ModularEEG.ui │ │ │ ├── interface-TMSI-Refa32B.ui │ │ │ ├── interface-channel-names.ui │ │ │ ├── interface-egi-ampserver.ui │ │ │ ├── interface.ui │ │ │ ├── scripts │ │ │ ├── egi-default-initialize.script │ │ │ ├── egi-default-start.script │ │ │ ├── egi-default-stop.script │ │ │ └── egi-default-uninitialize.script │ │ │ └── vamp.bmp │ │ └── src │ │ ├── brainproducts-brainampseries │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.cpp │ │ ├── ovasCConfigurationBrainProductsBrainampSeries.h │ │ ├── ovasCDriverBrainProductsBrainampSeries.cpp │ │ ├── ovasCDriverBrainProductsBrainampSeries.h │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.cpp │ │ ├── ovasCHeaderAdapterBrainProductsBrainampSeries.h │ │ └── ovas_defines_brainamp_series.h │ │ ├── brainproducts-brainvisionrecorder │ │ ├── ovasCDriverBrainProductsBrainVisionRecorder.cpp │ │ └── ovasCDriverBrainProductsBrainVisionRecorder.h │ │ ├── brainproducts-vamp │ │ ├── ovasCConfigurationBrainProductsVAmp.cpp │ │ ├── ovasCConfigurationBrainProductsVAmp.h │ │ ├── ovasCDriverBrainProductsVAmp.cpp │ │ ├── ovasCDriverBrainProductsVAmp.h │ │ ├── ovasCHeaderBrainProductsVAmp.cpp │ │ └── ovasCHeaderBrainProductsVAmp.h │ │ ├── ctfvsm-meg │ │ ├── ovasCDriverCtfVsmMeg.cpp │ │ └── ovasCDriverCtfVsmMeg.h │ │ ├── egi-ampserver │ │ ├── ovasCConfigurationEGIAmpServer.cpp │ │ ├── ovasCConfigurationEGIAmpServer.h │ │ ├── ovasCDriverEGIAmpServer.cpp │ │ └── ovasCDriverEGIAmpServer.h │ │ ├── emokit │ │ ├── ovasCConfigurationEmokit.cpp │ │ ├── ovasCConfigurationEmokit.h │ │ ├── ovasCDriverEmokit.cpp │ │ └── ovasCDriverEmokit.h │ │ ├── emotiv-epoc │ │ ├── ovasCConfigurationEmotivEPOC.cpp │ │ ├── ovasCConfigurationEmotivEPOC.h │ │ ├── ovasCDriverEmotivEPOC.cpp │ │ └── ovasCDriverEmotivEPOC.h │ │ ├── field-trip-protocol │ │ ├── GetCpuTime.h │ │ ├── fieldtrip │ │ │ ├── buffer.h │ │ │ ├── cleanup.c │ │ │ ├── clientrequest.c │ │ │ ├── compiler.h │ │ │ ├── dmarequest.c │ │ │ ├── endianutil.c │ │ │ ├── extern.c │ │ │ ├── extern.h │ │ │ ├── message.h │ │ │ ├── platform.h │ │ │ ├── platform_includes.h │ │ │ ├── printstruct.c │ │ │ ├── rdadefs.h │ │ │ ├── rdaserver.c │ │ │ ├── rdaserver.h │ │ │ ├── socketserver.c │ │ │ ├── socketserver.h │ │ │ ├── tcprequest.c │ │ │ ├── tiaserver.c │ │ │ ├── tiaserver.h │ │ │ ├── util.c │ │ │ └── win32 │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── gettimeofday.h │ │ │ │ ├── poll.c │ │ │ │ └── stdint.h │ │ ├── ovasCConfigurationFieldtrip.cpp │ │ ├── ovasCConfigurationFieldtrip.h │ │ ├── ovasCDriverFieldtrip.cpp │ │ └── ovasCDriverFieldtrip.h │ │ ├── generic-oscilator │ │ ├── ovasCDriverGenericOscilator.cpp │ │ └── ovasCDriverGenericOscilator.h │ │ ├── generic-raw-reader │ │ ├── ovasCConfigurationGenericRawReader.cpp │ │ ├── ovasCConfigurationGenericRawReader.h │ │ ├── ovasCDriverGenericRawFileReader.cpp │ │ ├── ovasCDriverGenericRawFileReader.h │ │ ├── ovasCDriverGenericRawReader.cpp │ │ ├── ovasCDriverGenericRawReader.h │ │ ├── ovasCDriverGenericRawTelnetReader.cpp │ │ └── ovasCDriverGenericRawTelnetReader.h │ │ ├── generic-sawtooth │ │ ├── ovasCDriverGenericSawTooth.cpp │ │ └── ovasCDriverGenericSawTooth.h │ │ ├── gtec-gmobilabplus │ │ ├── README │ │ ├── ovasCConfigurationGTecGMobiLabPlus.cpp │ │ ├── ovasCConfigurationGTecGMobiLabPlus.h │ │ ├── ovasCDriverGTecGMobiLabPlus.cpp │ │ └── ovasCDriverGTecGMobiLabPlus.h │ │ ├── gtec-gusbamp │ │ ├── ovasCConfigurationGTecGUSBamp.cpp │ │ ├── ovasCConfigurationGTecGUSBamp.h │ │ ├── ovasCDriverGTecGUSBamp.cpp │ │ └── ovasCDriverGTecGUSBamp.h │ │ ├── micromed-systemplusevolution │ │ ├── ovasCDriverMicromedSystemPlusEvolution.cpp │ │ └── ovasCDriverMicromedSystemPlusEvolution.h │ │ ├── mindmedia-nexus32b │ │ ├── ovasCDriverMindMediaNeXus32B.cpp │ │ └── ovasCDriverMindMediaNeXus32B.h │ │ ├── mitsarEEG202A │ │ ├── ovasCConfigurationMitsarEEG202A.cpp │ │ ├── ovasCConfigurationMitsarEEG202A.h │ │ ├── ovasCDriverMitsarEEG202A.cpp │ │ └── ovasCDriverMitsarEEG202A.h │ │ ├── neurosky-mindset │ │ ├── ovasCConfigurationNeuroskyMindset.cpp │ │ ├── ovasCConfigurationNeuroskyMindset.h │ │ ├── ovasCDriverNeuroskyMindset.cpp │ │ └── ovasCDriverNeuroskyMindset.h │ │ ├── openal-mono16bit-audiocapture │ │ ├── ovasCConfigurationOpenALAudioCapture.cpp │ │ ├── ovasCConfigurationOpenALAudioCapture.h │ │ ├── ovasCDriverOpenALAudioCapture.cpp │ │ └── ovasCDriverOpenALAudioCapture.h │ │ ├── openeeg-modulareeg │ │ ├── ovasCConfigurationOpenEEGModularEEG.cpp │ │ ├── ovasCConfigurationOpenEEGModularEEG.h │ │ ├── ovasCDriverOpenEEGModularEEG.cpp │ │ └── ovasCDriverOpenEEGModularEEG.h │ │ ├── ovasCAcquisitionServer.cpp │ │ ├── ovasCAcquisitionServer.h │ │ ├── ovasCAcquisitionServerGUI.cpp │ │ ├── ovasCAcquisitionServerGUI.h │ │ ├── ovasCAcquisitionServerThread.h │ │ ├── ovasCConfigurationBuilder.cpp │ │ ├── ovasCConfigurationBuilder.h │ │ ├── ovasCConfigurationNetworkBuilder.cpp │ │ ├── ovasCConfigurationNetworkBuilder.h │ │ ├── ovasCHeader.cpp │ │ ├── ovasCHeader.h │ │ ├── ovasIDriver.h │ │ ├── ovasIHeader.h │ │ ├── ovas_base.h │ │ ├── ovas_defines.h │ │ ├── ovas_main.cpp │ │ └── tmsi-refa32b │ │ ├── ovasCConfigurationTMSIRefa32B.cpp │ │ ├── ovasCConfigurationTMSIRefa32B.h │ │ ├── ovasCDriverTMSiRefa32B.cpp │ │ └── ovasCDriverTMSiRefa32B.h ├── designer │ ├── tags │ │ └── wip-omk4 │ │ │ ├── CMakeLists.txt │ │ │ ├── share │ │ │ └── openvibe-applications │ │ │ │ └── designer │ │ │ │ ├── interface.glade │ │ │ │ └── windowmanager_icon.png │ │ │ └── src │ │ │ ├── ovdCBoxProxy.cpp │ │ │ ├── ovdCBoxProxy.h │ │ │ ├── ovdCConnectorEditor.cpp │ │ │ ├── ovdCConnectorEditor.h │ │ │ ├── ovdCDesignerVisualisation.cpp │ │ │ ├── ovdCDesignerVisualisation.h │ │ │ ├── ovdCInputDialog.cpp │ │ │ ├── ovdCInputDialog.h │ │ │ ├── ovdCInterfacedObject.cpp │ │ │ ├── ovdCInterfacedObject.h │ │ │ ├── ovdCInterfacedScenario.cpp │ │ │ ├── ovdCInterfacedScenario.h │ │ │ ├── ovdCLinkProxy.cpp │ │ │ ├── ovdCLinkProxy.h │ │ │ ├── ovdCPlayerVisualisation.cpp │ │ │ ├── ovdCPlayerVisualisation.h │ │ │ ├── ovdCSettingEditor.cpp │ │ │ ├── ovdCSettingEditor.h │ │ │ ├── ovdTAttributeHandler.cpp │ │ │ ├── ovdTAttributeHandler.h │ │ │ ├── ovd_base.h │ │ │ ├── ovd_defines.h │ │ │ └── ovd_main.cpp │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-applications │ │ │ └── designer │ │ │ ├── interface-settings.ui │ │ │ ├── interface.ui │ │ │ └── windowmanager_icon.png │ │ └── src │ │ ├── ovdCAboutPluginDialog.cpp │ │ ├── ovdCAboutPluginDialog.h │ │ ├── ovdCAboutScenarioDialog.cpp │ │ ├── ovdCAboutScenarioDialog.h │ │ ├── ovdCApplication.cpp │ │ ├── ovdCApplication.h │ │ ├── ovdCBoxConfigurationDialog.cpp │ │ ├── ovdCBoxConfigurationDialog.h │ │ ├── ovdCBoxProxy.cpp │ │ ├── ovdCBoxProxy.h │ │ ├── ovdCCommentEditorDialog.cpp │ │ ├── ovdCCommentEditorDialog.h │ │ ├── ovdCCommentProxy.cpp │ │ ├── ovdCCommentProxy.h │ │ ├── ovdCConnectorEditor.cpp │ │ ├── ovdCConnectorEditor.h │ │ ├── ovdCDesignerVisualisation.cpp │ │ ├── ovdCDesignerVisualisation.h │ │ ├── ovdCInputDialog.cpp │ │ ├── ovdCInputDialog.h │ │ ├── ovdCInterfacedObject.cpp │ │ ├── ovdCInterfacedObject.h │ │ ├── ovdCInterfacedScenario.cpp │ │ ├── ovdCInterfacedScenario.h │ │ ├── ovdCLinkProxy.cpp │ │ ├── ovdCLinkProxy.h │ │ ├── ovdCLogListenerDesigner.cpp │ │ ├── ovdCLogListenerDesigner.h │ │ ├── ovdCPlayerVisualisation.cpp │ │ ├── ovdCPlayerVisualisation.h │ │ ├── ovdCRenameDialog.cpp │ │ ├── ovdCRenameDialog.h │ │ ├── ovdCScenarioStateStack.cpp │ │ ├── ovdCScenarioStateStack.h │ │ ├── ovdCSettingCollectionHelper.cpp │ │ ├── ovdCSettingCollectionHelper.h │ │ ├── ovdCSettingEditorDialog.cpp │ │ ├── ovdCSettingEditorDialog.h │ │ ├── ovdTAttributeHandler.cpp │ │ ├── ovdTAttributeHandler.h │ │ ├── ovd_base.h │ │ ├── ovd_defines.h │ │ └── ovd_main.cpp ├── id-generator │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ └── ovig_main.cpp ├── plugin-inspector │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── ovpiCPluginObjectDescEnum.cpp │ │ ├── ovpiCPluginObjectDescEnum.h │ │ ├── ovpiCPluginObjectDescEnumAlgorithmGlobalDefinesGenerator.cpp │ │ ├── ovpiCPluginObjectDescEnumAlgorithmGlobalDefinesGenerator.h │ │ ├── ovpiCPluginObjectDescEnumAlgorithmSnapshotGenerator.cpp │ │ ├── ovpiCPluginObjectDescEnumAlgorithmSnapshotGenerator.h │ │ ├── ovpiCPluginObjectDescEnumBoxAlgorithmSnapshotGenerator.cpp │ │ ├── ovpiCPluginObjectDescEnumBoxAlgorithmSnapshotGenerator.h │ │ ├── ovpi_base.h │ │ ├── ovpi_defines.h │ │ └── ovpi_main.cpp ├── skeleton-generator │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-applications │ │ │ └── skeleton-generator │ │ │ ├── box.cpp-codec-toolkit-skeleton │ │ │ ├── box.cpp-skeleton │ │ │ ├── box.h-skeleton │ │ │ ├── configuration.cpp-skeleton │ │ │ ├── configuration.h-skeleton │ │ │ ├── driver.cpp-skeleton │ │ │ ├── driver.h-skeleton │ │ │ ├── generator-interface.ui │ │ │ ├── interface.ui-skeleton │ │ │ ├── libiconv2.dll │ │ │ ├── libintl3.dll │ │ │ ├── readme-box.txt-skeleton │ │ │ ├── readme-driver.txt-skeleton │ │ │ ├── regex2.dll │ │ │ └── sed.exe │ │ └── src │ │ ├── ovsgCBoxAlgorithmSkeletonGenerator.cpp │ │ ├── ovsgCBoxAlgorithmSkeletonGenerator.h │ │ ├── ovsgCDriverSkeletonGenerator.cpp │ │ ├── ovsgCDriverSkeletonGenerator.h │ │ ├── ovsgCSkeletonGenerator.cpp │ │ ├── ovsgCSkeletonGenerator.h │ │ └── ovsg_main.cpp ├── ssvep-demo │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ ├── openvibe-applications │ │ │ └── ssvep-demo │ │ │ │ ├── resources │ │ │ │ ├── SSVEP.material │ │ │ │ ├── gui │ │ │ │ │ ├── TaharezLook-ov.scheme │ │ │ │ │ ├── TaharezLook.imageset │ │ │ │ │ ├── TaharezLook.looknfeel │ │ │ │ │ ├── TaharezLook.tga │ │ │ │ │ ├── bluehigh.ttf │ │ │ │ │ ├── bluehighway-10.font │ │ │ │ │ ├── bluehighway-12.font │ │ │ │ │ ├── bluehighway-24.font │ │ │ │ │ └── bluehighway-8.font │ │ │ │ └── trainer │ │ │ │ │ └── InstructionText-Start.png │ │ │ │ ├── shooter.conf │ │ │ │ └── training.conf │ │ └── openvibe-ssvep-demo.conf │ │ └── src │ │ ├── Shooter │ │ ├── ovassvepCCommandShipControl.cpp │ │ ├── ovassvepCCommandShipControl.h │ │ ├── ovassvepCCommandTargetControl.cpp │ │ ├── ovassvepCCommandTargetControl.h │ │ ├── ovassvepCShooterApplication.cpp │ │ ├── ovassvepCShooterApplication.h │ │ ├── ovassvepCShooterTarget.cpp │ │ ├── ovassvepCShooterTarget.h │ │ ├── ovassvepCStarShip.cpp │ │ └── ovassvepCStarShip.h │ │ ├── Trainer │ │ ├── ovassvepCCommandReceiveTarget.cpp │ │ ├── ovassvepCCommandReceiveTarget.h │ │ ├── ovassvepCTrainerApplication.cpp │ │ ├── ovassvepCTrainerApplication.h │ │ ├── ovassvepCTrainerFlickeringObject.cpp │ │ └── ovassvepCTrainerFlickeringObject.h │ │ ├── ovassvepCApplication.cpp │ │ ├── ovassvepCApplication.h │ │ ├── ovassvepCBasicPainter.cpp │ │ ├── ovassvepCBasicPainter.h │ │ ├── ovassvepCCommandStartStop.cpp │ │ ├── ovassvepCCommandStartStop.h │ │ ├── ovassvepCCommandStimulatorControl.cpp │ │ ├── ovassvepCCommandStimulatorControl.h │ │ ├── ovassvepCPainter.cpp │ │ ├── ovassvepCPainter.h │ │ ├── ovassvepCSSVEPFlickeringObject.cpp │ │ ├── ovassvepCSSVEPFlickeringObject.h │ │ ├── ovassvepCStimulator.cpp │ │ ├── ovassvepCStimulator.h │ │ ├── ovassvepCVRPNServer.cpp │ │ ├── ovassvepCVRPNServer.h │ │ ├── ovassvepICommand.h │ │ ├── ovassvepICommandOIS.cpp │ │ ├── ovassvepICommandOIS.h │ │ ├── ovassvepICommandVRPNButton.cpp │ │ ├── ovassvepICommandVRPNButton.h │ │ ├── ovassvep_defines.h │ │ └── ovassvep_main.cpp ├── vr-demo │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── bin │ │ └── OpenViBE-vr-demo │ │ ├── share │ │ └── openvibe-applications │ │ │ └── vr-demo │ │ │ ├── common │ │ │ ├── GUI │ │ │ │ ├── TaharezLook-ov.scheme │ │ │ │ ├── bluehigh.ttf │ │ │ │ ├── bluehighway-10.font │ │ │ │ ├── bluehighway-12.font │ │ │ │ ├── bluehighway-24.font │ │ │ │ └── bluehighway-8.font │ │ │ ├── OgreCore.zip │ │ │ └── scene-plane │ │ │ │ ├── plane-blue.material │ │ │ │ ├── plane-blue.scene │ │ │ │ ├── plane-blueNode.mesh │ │ │ │ ├── plane-cyan.material │ │ │ │ ├── plane-cyan.scene │ │ │ │ ├── plane-cyanNode.mesh │ │ │ │ ├── plane-green.material │ │ │ │ ├── plane-green.scene │ │ │ │ ├── plane-greenNode.mesh │ │ │ │ ├── plane-pink.material │ │ │ │ ├── plane-pink.scene │ │ │ │ ├── plane-pinkNode.mesh │ │ │ │ ├── plane-red.material │ │ │ │ ├── plane-red.scene │ │ │ │ └── plane-redNode.mesh │ │ │ ├── handball │ │ │ ├── ogre.cfg │ │ │ ├── resources.cfg │ │ │ ├── scene-active-ball │ │ │ │ ├── active-ball-texture.png │ │ │ │ ├── active-ball.material │ │ │ │ ├── active-ball.scene │ │ │ │ └── active-ballNode.mesh │ │ │ ├── scene-arrow │ │ │ │ ├── arrow.material │ │ │ │ ├── arrow.scene │ │ │ │ └── arrowNode.mesh │ │ │ ├── scene-basic-arrow │ │ │ │ ├── basic-arrow.material │ │ │ │ ├── basic-arrow.scene │ │ │ │ └── basic-arrowNode.mesh │ │ │ ├── scene-cross │ │ │ │ ├── cross.material │ │ │ │ ├── cross.scene │ │ │ │ └── crossNode.mesh │ │ │ ├── scene-get-ready-ball │ │ │ │ ├── get-ready-ball-texture.png │ │ │ │ ├── get-ready-ball.material │ │ │ │ ├── get-ready-ball.scene │ │ │ │ └── get-ready-ballNode.mesh │ │ │ ├── scene-goal │ │ │ │ ├── goal-border.mesh │ │ │ │ ├── goal-net.mesh │ │ │ │ ├── goal.material │ │ │ │ ├── goal.scene │ │ │ │ └── goalNode.mesh │ │ │ ├── scene-graz-cross │ │ │ │ ├── blue-bar.png │ │ │ │ ├── cross.png │ │ │ │ ├── green-bar.png │ │ │ │ ├── left-arrow.png │ │ │ │ ├── red-bar.png │ │ │ │ └── right-arrow.png │ │ │ ├── scene-gymnasium │ │ │ │ ├── door-01.mesh │ │ │ │ ├── door-02.mesh │ │ │ │ ├── door-03.mesh │ │ │ │ ├── door-04.mesh │ │ │ │ ├── gymnasium-bois2.jpg │ │ │ │ ├── gymnasium-briques6.jpg │ │ │ │ ├── gymnasium-door2.png │ │ │ │ ├── gymnasium-exitsignal.jpg │ │ │ │ ├── gymnasium-logo-irisa.jpg │ │ │ │ ├── gymnasium-logo_bunraku-m2s.jpg │ │ │ │ ├── gymnasium-metal.jpg │ │ │ │ ├── gymnasium-olympic-blue.png │ │ │ │ ├── gymnasium-olympic-gold.png │ │ │ │ ├── gymnasium-olympic-green.png │ │ │ │ ├── gymnasium-olympic-red.png │ │ │ │ ├── gymnasium-parquet.jpg │ │ │ │ ├── gymnasium-plafond.jpg │ │ │ │ ├── gymnasium-publicity.mesh │ │ │ │ ├── gymnasium-terrainf1.png │ │ │ │ ├── gymnasium-terrainf2.png │ │ │ │ ├── gymnasium.material │ │ │ │ ├── gymnasium.max │ │ │ │ ├── gymnasium.scene │ │ │ │ ├── gymnasiumNode.mesh │ │ │ │ ├── publicity-01.mesh │ │ │ │ ├── publicity-02.mesh │ │ │ │ ├── publicity-03.mesh │ │ │ │ ├── publicity-04.mesh │ │ │ │ ├── publicity-05.mesh │ │ │ │ ├── publicity-06.mesh │ │ │ │ ├── publicity-07.mesh │ │ │ │ ├── structure-01.mesh │ │ │ │ ├── structure-02.mesh │ │ │ │ ├── structure-03.mesh │ │ │ │ ├── structure-04.mesh │ │ │ │ ├── structure-05.mesh │ │ │ │ ├── structure-06.mesh │ │ │ │ ├── structure-07.mesh │ │ │ │ ├── table.mesh │ │ │ │ ├── wall-publicity-01.mesh │ │ │ │ ├── wall-publicity-02.mesh │ │ │ │ ├── wall-publicity-03.mesh │ │ │ │ ├── wall-publicity-04.mesh │ │ │ │ ├── wall-publicity-06.mesh │ │ │ │ ├── wall-publicity-07.mesh │ │ │ │ ├── wall-publicity-08.mesh │ │ │ │ ├── wall-publicity-09.mesh │ │ │ │ ├── wall-publicity-10.mesh │ │ │ │ ├── wall-publicity-11.mesh │ │ │ │ ├── wall-publicity-12.mesh │ │ │ │ └── wall-publicity-13.mesh │ │ │ └── scene-passive-ball │ │ │ │ ├── passive-ball-texture.png │ │ │ │ ├── passive-ball.material │ │ │ │ ├── passive-ball.scene │ │ │ │ └── passive-ballNode.mesh │ │ │ └── tie-fighter │ │ │ ├── bouge-les-pieds.png │ │ │ ├── bouge.png │ │ │ ├── calibration.png │ │ │ ├── fin-de-partie.png │ │ │ ├── game-over.png │ │ │ ├── move-your-feet.png │ │ │ ├── move.png │ │ │ ├── ogre.cfg │ │ │ ├── pret.png │ │ │ ├── ready.png │ │ │ ├── resources.cfg-base │ │ │ ├── scene-hangar │ │ │ ├── croisertexturecomplete.jpg │ │ │ ├── hangar.material │ │ │ ├── hangar.mesh │ │ │ ├── hangar.scene │ │ │ ├── stars.jpg │ │ │ └── steelplt.jpg │ │ │ ├── scene-misc │ │ │ ├── barrel.mesh │ │ │ ├── flare.png │ │ │ ├── misc.material │ │ │ ├── ring_flare.png │ │ │ ├── rusty-barrel.png │ │ │ └── spark.particle │ │ │ ├── scene-tie │ │ │ ├── tie.material │ │ │ ├── tie.scene │ │ │ └── tieNode.mesh │ │ │ ├── scene-vador │ │ │ ├── vador-vadr1.jpg │ │ │ ├── vador-vadr2.jpg │ │ │ ├── vador-vadr3.jpg │ │ │ ├── vador-vadr4.jpg │ │ │ ├── vador-vadr5.jpg │ │ │ ├── vador.material │ │ │ ├── vador.mesh │ │ │ └── vador.scene │ │ │ ├── score.png │ │ │ ├── statistiques.png │ │ │ ├── stop-move.png │ │ │ └── stop.png │ │ ├── src │ │ ├── HandballBCI │ │ │ ├── ovavrdCHandballBCI.cpp │ │ │ └── ovavrdCHandballBCI.h │ │ ├── TieFighterBCI │ │ │ ├── ovavrdCTieFighterBCI.cpp │ │ │ └── ovavrdCTieFighterBCI.h │ │ ├── ovaCAbstractVrpnPeripheral.cpp │ │ ├── ovaCAbstractVrpnPeripheral.h │ │ ├── ova_defines.h │ │ ├── ovavrdCOgreVRApplication.cpp │ │ ├── ovavrdCOgreVRApplication.h │ │ └── ovavrd_main.cpp │ │ └── test │ │ ├── ovaC3DEntityManipulator.cpp │ │ ├── ovaC3DEntityManipulator.h │ │ ├── ovaCManipulable3DEntity.cpp │ │ ├── ovaCManipulable3DEntity.h │ │ ├── ovaCNeurofeedbackManipulator.cpp │ │ ├── ovaCNeurofeedbackManipulator.h │ │ ├── ovaCNeurofeedbackScoreCounter.cpp │ │ ├── ovaCNeurofeedbackScoreCounter.h │ │ ├── ovaCNeurofeedbackSwitch.cpp │ │ └── ovaCNeurofeedbackSwitch.h └── vrpn-simulator │ └── trunc │ ├── CMakeLists.txt │ ├── share │ └── openvibe-applications │ │ └── vrpn-simulator │ │ └── interface.ui │ └── src │ └── ova_main.cpp ├── openvibe-documentation └── trunc │ ├── CMakeLists.txt │ └── src │ ├── CMakeLists.txt │ ├── cc-by-sa.png │ ├── developers │ ├── contribution │ │ └── contribution.dox │ ├── global-algorithm-identifiers │ │ └── global-defines.dox │ ├── installation │ │ └── install.dox │ ├── matrix-file-format │ │ └── MatrixFileFormat.dox │ ├── stimulation-codes │ │ └── stimulations.dox │ ├── stream-structures │ │ └── streams.dox │ ├── tools │ │ ├── id-generator.dox │ │ ├── id-generator.png │ │ ├── sk-gen-box-description.png │ │ ├── sk-gen-driver.png │ │ ├── sk-gen-init.png │ │ └── skeleton-generator.dox │ └── tutorials │ │ ├── documentation │ │ ├── PluginInspector.dox │ │ ├── documentation-howto.dox │ │ ├── documentation-howto.odp │ │ └── documentation-howto.png │ │ ├── driver │ │ ├── configuration │ │ │ ├── ConfiguringANewDriver.dox │ │ │ ├── basic_config.png │ │ │ └── gtec_config.png │ │ ├── creation │ │ │ ├── CreatingANewDriver.dox │ │ │ ├── config_header_uml.png │ │ │ ├── driver_automate.dia │ │ │ ├── driver_automate.png │ │ │ └── skeleton-generator.png │ │ ├── impedance-checker │ │ │ └── DriverImpedanceChecker.dox │ │ └── jitter-correction │ │ │ ├── DriverJitterCorrection.dox │ │ │ └── warning.png │ │ ├── signal-processing │ │ ├── algo-diagram.png │ │ ├── box-diagram.png │ │ ├── developer_codec_toolkit_ref.dox │ │ ├── ovpCAlgorithmSignalProcessingAlgorithm.cpp │ │ ├── ovpCAlgorithmSignalProcessingAlgorithm.h │ │ ├── ovpCBoxAlgorithmSignalProcessingBoxAlgorithm.cpp │ │ ├── ovpCBoxAlgorithmSignalProcessingBoxAlgorithm.h │ │ ├── ovpCTestCodecToolkit.cpp │ │ ├── ovpCTestCodecToolkit.h │ │ ├── tutorial_developer_signal_processing_0_intro.dox │ │ ├── tutorial_developer_signal_processing_1_algo.dox │ │ ├── tutorial_developer_signal_processing_1_box.dox │ │ └── tutorial_developer_signal_processing_3_codec.dox │ │ └── vr-application │ │ ├── VRApplicationAndVRPN.dox │ │ └── loop.png │ ├── doxyfile-skeleton │ ├── doxygen.css │ ├── doxygen.png │ ├── faq.dox │ ├── footer.html │ ├── header.html │ ├── leaving.png │ ├── licence.dox │ ├── linux.svg.png │ ├── logo.png │ ├── none.svg.png │ ├── openvibe.dox │ ├── search.php │ ├── tabs.css │ ├── tick.png │ ├── users │ ├── acquisition-server │ │ └── overview │ │ │ ├── AcquisitionServerOverview.dox │ │ │ ├── acquisition_server_gui.png │ │ │ ├── acquisition_server_settings.png │ │ │ └── driver_settings.png │ ├── configuration-manager │ │ └── ConfigurationManager.dox │ ├── designer │ │ ├── overview │ │ │ ├── DesignerOverview.dox │ │ │ ├── designer.png │ │ │ ├── designer0.5.0.png │ │ │ └── log_levels.png │ │ ├── settings-override │ │ │ └── BoxAlgorithmSettingsOverrideFileFormat.dox │ │ ├── tutorials │ │ │ ├── tutorial1 │ │ │ │ ├── DesignerTutorial1.dox │ │ │ │ ├── designer_tutorial_1_adding_sinus_oscillator_v2.png │ │ │ │ ├── designer_tutorial_1_connecting_boxes_v2.png │ │ │ │ ├── designer_tutorial_1_main_window_v2.png │ │ │ │ └── designer_tutorial_1_playing_scenario.png │ │ │ ├── tutorial2 │ │ │ │ ├── DesignerTutorial2.dox │ │ │ │ ├── designer_tutorial_2_box_settings_dialog_v2.png │ │ │ │ ├── designer_tutorial_2_changing_channel_count.png │ │ │ │ ├── designer_tutorial_2_changing_time_scale.png │ │ │ │ ├── designer_tutorial_2_changing_time_scale_toolbar_v2.png │ │ │ │ ├── designer_tutorial_2_changing_time_scale_visu_v2.png │ │ │ │ ├── designer_tutorial_2_identifying_customizable_boxes_v2.png │ │ │ │ └── designer_tutorial_2_toolbar_button.png │ │ │ ├── tutorial3 │ │ │ │ ├── DesignerTutorial3.dox │ │ │ │ ├── designer_tutorial_3_2tabs.png │ │ │ │ ├── designer_tutorial_3_4boxes_1tab.png │ │ │ │ ├── designer_tutorial_3_affect_plugin.png │ │ │ │ ├── designer_tutorial_3_unaffected_boxes_online.png │ │ │ │ ├── designer_tutorial_3_unaffected_boxes_v2.png │ │ │ │ └── designer_tutorial_3_window_manager.png │ │ │ └── tutorial4 │ │ │ │ ├── DesignerTutorial4.dox │ │ │ │ ├── designer_tutorial_4_configure_add_setting.png │ │ │ │ ├── designer_tutorial_4_configure_input_type.png │ │ │ │ ├── designer_tutorial_4_configure_input_type_dialog.png │ │ │ │ ├── designer_tutorial_4_configure_output_number.png │ │ │ │ ├── designer_tutorial_4_configure_output_number_dialog.png │ │ │ │ └── designer_tutorial_4_configure_setting_added.png │ │ └── window-manager │ │ │ ├── WindowManagerUsage.dox │ │ │ ├── window_manager.png │ │ │ ├── window_manager_2tabs.png │ │ │ ├── window_manager_4boxes_1tab.png │ │ │ ├── window_manager_affect_plugin.png │ │ │ ├── window_manager_unaffected_boxes.png │ │ │ └── window_manager_unaffected_boxes_online.png │ ├── experiment-environment │ │ └── ExperimentEnvironment.dox │ └── scenarios │ │ ├── ExistingScenarios.dox │ │ ├── handball.png │ │ ├── inserm-p300-speller │ │ ├── Doc_Scenario_InsermP300Speller.dox │ │ ├── Doc_Scenario_InsermP300Speller_Image1.png │ │ ├── Doc_Scenario_InsermP300Speller_Image10.png │ │ ├── Doc_Scenario_InsermP300Speller_Image2.png │ │ ├── Doc_Scenario_InsermP300Speller_Image3.png │ │ ├── Doc_Scenario_InsermP300Speller_Image4.png │ │ ├── Doc_Scenario_InsermP300Speller_Image5.png │ │ ├── Doc_Scenario_InsermP300Speller_Image6.png │ │ ├── Doc_Scenario_InsermP300Speller_Image7.png │ │ ├── Doc_Scenario_InsermP300Speller_Image8.png │ │ └── Doc_Scenario_InsermP300Speller_Image9.png │ │ ├── motor-imagery-replay.png │ │ ├── motor-imagery.png │ │ ├── neurofeedback.png │ │ ├── p300-magic-card.png │ │ ├── p300.png │ │ ├── ssvep │ │ ├── Doc_Scenario_SSVEP.dox │ │ ├── frequency-patterns.png │ │ ├── online-shooter.png │ │ └── training.png │ │ └── tie-fighter.png │ ├── windows.svg.png │ └── wip │ ├── BoxAlgorithmConnectorTypes.dox │ ├── DataVisualisation.dox │ ├── boxalgorithm.png │ ├── boxalgorithm_settings.png │ ├── scenario_edition_gdffilereader_online.png │ ├── scenario_edition_genericnetworkacquisition_online.png │ ├── scenario_edition_sinus_oscillator.png │ └── scenario_edition_sinus_oscillator_online.png ├── openvibe-externals └── README ├── openvibe-kernel-omk ├── tags │ └── wip-omk4 │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-kernel-omk │ │ │ ├── OgreCore.zip │ │ │ ├── cfgnovis.OpenMASK3 │ │ │ ├── cfgvis.OpenMASK3 │ │ │ ├── cone_ov.material │ │ │ ├── cone_ov.mesh │ │ │ ├── cone_ov.scene │ │ │ ├── resources.cfg │ │ │ ├── sphere_ov.material │ │ │ ├── sphere_ov.mesh │ │ │ └── sphere_ov.scene │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── FindThirdPartyOgre3D.cmake │ │ └── openvibe-kernel │ │ ├── kernel │ │ ├── algorithm │ │ │ ├── ovkCAlgorithm.cpp │ │ │ ├── ovkCAlgorithm.h │ │ │ ├── ovkCAlgorithmContext.cpp │ │ │ ├── ovkCAlgorithmContext.h │ │ │ ├── ovkCAlgorithmManager.cpp │ │ │ ├── ovkCAlgorithmManager.h │ │ │ ├── ovkCAlgorithmProto.cpp │ │ │ ├── ovkCAlgorithmProto.h │ │ │ ├── ovkCAlgorithmProxy.cpp │ │ │ └── ovkCAlgorithmProxy.h │ │ ├── log │ │ │ ├── ovkCLogListenerConsole.cpp │ │ │ ├── ovkCLogListenerConsole.h │ │ │ ├── ovkCLogListenerFile.cpp │ │ │ ├── ovkCLogListenerFile.h │ │ │ ├── ovkCLogListenerNull.cpp │ │ │ ├── ovkCLogListenerNull.h │ │ │ ├── ovkCLogManager.cpp │ │ │ └── ovkCLogManager.h │ │ ├── ovkCConfigurable.h │ │ ├── ovkCKernel.cpp │ │ ├── ovkCKernel.h │ │ ├── ovkCKernelContext.cpp │ │ ├── ovkCKernelContext.h │ │ ├── ovkCKernelObjectFactory.cpp │ │ ├── ovkCKernelObjectFactory.h │ │ ├── ovkCObjectVisitorContext.cpp │ │ ├── ovkCObjectVisitorContext.h │ │ ├── ovkCParameter.h │ │ ├── ovkCTypeManager.cpp │ │ ├── ovkCTypeManager.h │ │ ├── ovkTConfigurable.h │ │ ├── ovkTKernelObject.h │ │ ├── ovkTParameter.h │ │ ├── player │ │ │ ├── ovkCBoxAlgorithmContext.cpp │ │ │ ├── ovkCBoxAlgorithmContext.h │ │ │ ├── ovkCBuffer.cpp │ │ │ ├── ovkCBuffer.h │ │ │ ├── ovkCMessageClock.h │ │ │ ├── ovkCMessageEvent.h │ │ │ ├── ovkCMessageSignal.h │ │ │ ├── ovkCPlayer.cpp │ │ │ ├── ovkCPlayer.h │ │ │ ├── ovkCPlayerContext.cpp │ │ │ ├── ovkCPlayerContext.h │ │ │ ├── ovkCPlayerManager.cpp │ │ │ ├── ovkCPlayerManager.h │ │ │ ├── ovkEventId.cpp │ │ │ ├── ovkEventId.h │ │ │ ├── ovkPsSimulatedBox.cpp │ │ │ ├── ovkPsSimulatedBox.h │ │ │ ├── ovkPsSimulatedBoxBase.cpp │ │ │ ├── ovkPsSimulatedBoxBase.h │ │ │ ├── ovkPsTypeChunk.cpp │ │ │ ├── ovkPsTypeChunk.h │ │ │ ├── ovkTMessage.h │ │ │ └── ovkTMessage.inl │ │ ├── plugins │ │ │ ├── ovkCPluginManager.cpp │ │ │ ├── ovkCPluginManager.h │ │ │ ├── ovkCPluginModule.cpp │ │ │ └── ovkCPluginModule.h │ │ ├── scenario │ │ │ ├── ovkCBox.cpp │ │ │ ├── ovkCBox.h │ │ │ ├── ovkCBoxProto.cpp │ │ │ ├── ovkCBoxProto.h │ │ │ ├── ovkCLink.cpp │ │ │ ├── ovkCLink.h │ │ │ ├── ovkCProcessingUnit.cpp │ │ │ ├── ovkCProcessingUnit.h │ │ │ ├── ovkCScenario.cpp │ │ │ ├── ovkCScenario.h │ │ │ ├── ovkCScenarioExporterContext.cpp │ │ │ ├── ovkCScenarioExporterContext.h │ │ │ ├── ovkCScenarioImporterContext.cpp │ │ │ ├── ovkCScenarioImporterContext.h │ │ │ ├── ovkCScenarioManager.cpp │ │ │ ├── ovkCScenarioManager.h │ │ │ └── ovkTAttributable.h │ │ └── visualisation │ │ │ ├── ovkCOgreContext.cpp │ │ │ ├── ovkCOgreContext.h │ │ │ ├── ovkCOgreWidget.cpp │ │ │ ├── ovkCOgreWidget.h │ │ │ ├── ovkCVisualisationContext.cpp │ │ │ ├── ovkCVisualisationContext.h │ │ │ ├── ovkCVisualisationManager.cpp │ │ │ ├── ovkCVisualisationManager.h │ │ │ ├── ovkCVisualisationTree.cpp │ │ │ ├── ovkCVisualisationTree.h │ │ │ ├── ovkCVisualisationWidget.cpp │ │ │ ├── ovkCVisualisationWidget.h │ │ │ ├── ovkOMKAddVisualObjectExt.cpp │ │ │ ├── ovkOMKAddVisualObjectExt.h │ │ │ ├── ovkOMKColorShaderAnimator.cpp │ │ │ ├── ovkOMKColorShaderAnimator.h │ │ │ ├── ovkOMKDeclareVisualObjectExt.cpp │ │ │ ├── ovkOMKDeclareVisualObjectExt.h │ │ │ ├── ovkOMKSimulatedEntity.cpp │ │ │ ├── ovkOMKSimulatedEntity.h │ │ │ ├── ovkOMKVertexBufferAnimator.cpp │ │ │ ├── ovkOMKVertexBufferAnimator.h │ │ │ ├── ovkOMKVertexData.cpp │ │ │ ├── ovkOMKVertexData.h │ │ │ └── ovkOMKVertexDataType.h │ │ ├── ovk_base.h │ │ ├── ovk_defines.h │ │ ├── ovk_main.cpp │ │ ├── ovk_tools.h │ │ └── tools │ │ ├── ovkCKernelObjectFactoryHelper.h │ │ ├── ovkCScopeTester.cpp │ │ ├── ovkCScopeTester.h │ │ ├── ovk_bridge_bind_function.h │ │ └── ovk_identifier_map_iterator.h └── trunc │ ├── CMakeLists.txt │ ├── share │ ├── openvibe-delayed.conf │ ├── openvibe-kernel-omk │ │ ├── OgreCore.zip │ │ ├── cone_ov.material │ │ ├── cone_ov.mesh │ │ ├── ogre.cfg │ │ ├── resources.cfg │ │ ├── sphere_ov.material │ │ └── sphere_ov.mesh │ └── openvibe.conf │ └── src │ └── openvibe-kernel │ ├── kernel │ ├── algorithm │ │ ├── ovkCAlgorithm.cpp │ │ ├── ovkCAlgorithm.h │ │ ├── ovkCAlgorithmContext.cpp │ │ ├── ovkCAlgorithmContext.h │ │ ├── ovkCAlgorithmManager.cpp │ │ ├── ovkCAlgorithmManager.h │ │ ├── ovkCAlgorithmProto.cpp │ │ ├── ovkCAlgorithmProto.h │ │ ├── ovkCAlgorithmProxy.cpp │ │ └── ovkCAlgorithmProxy.h │ ├── configuration │ │ ├── ovkCConfigurationManager.cpp │ │ └── ovkCConfigurationManager.h │ ├── log │ │ ├── ovkCLogListenerConsole.cpp │ │ ├── ovkCLogListenerConsole.h │ │ ├── ovkCLogListenerFile.cpp │ │ ├── ovkCLogListenerFile.h │ │ ├── ovkCLogListenerNull.cpp │ │ ├── ovkCLogListenerNull.h │ │ ├── ovkCLogManager.cpp │ │ └── ovkCLogManager.h │ ├── ovkCConfigurable.h │ ├── ovkCKernelContext.cpp │ ├── ovkCKernelContext.h │ ├── ovkCKernelObjectFactory.cpp │ ├── ovkCKernelObjectFactory.h │ ├── ovkCObjectVisitorContext.cpp │ ├── ovkCObjectVisitorContext.h │ ├── ovkCParameter.h │ ├── ovkCTypeManager.cpp │ ├── ovkCTypeManager.h │ ├── ovkGtkOVCustom.cpp │ ├── ovkGtkOVCustom.h │ ├── ovkIGtkOVCustomHandler.h │ ├── ovkTConfigurable.h │ ├── ovkTKernelObject.h │ ├── ovkTParameter.h │ ├── player │ │ ├── ovkCBoxAlgorithmContext.cpp │ │ ├── ovkCBoxAlgorithmContext.h │ │ ├── ovkCBuffer.cpp │ │ ├── ovkCBuffer.h │ │ ├── ovkCColorAnimator.cpp │ │ ├── ovkCColorAnimator.h │ │ ├── ovkCMaterial.cpp │ │ ├── ovkCMaterial.h │ │ ├── ovkCMessageClock.h │ │ ├── ovkCMessageEvent.h │ │ ├── ovkCMessageSignal.h │ │ ├── ovkCOgreAnimator.cpp │ │ ├── ovkCOgreAnimator.h │ │ ├── ovkCOgreFrameListener.cpp │ │ ├── ovkCOgreFrameListener.h │ │ ├── ovkCOgreObject.cpp │ │ ├── ovkCOgreObject.h │ │ ├── ovkCOgreResourceGroup.cpp │ │ ├── ovkCOgreResourceGroup.h │ │ ├── ovkCOgreScene.cpp │ │ ├── ovkCOgreScene.h │ │ ├── ovkCOgreVisualisation.cpp │ │ ├── ovkCOgreVisualisation.h │ │ ├── ovkCOgreWindow.cpp │ │ ├── ovkCOgreWindow.h │ │ ├── ovkCPlayer.cpp │ │ ├── ovkCPlayer.h │ │ ├── ovkCPlayerContext.cpp │ │ ├── ovkCPlayerContext.h │ │ ├── ovkCPlayerManager.cpp │ │ ├── ovkCPlayerManager.h │ │ ├── ovkCScheduler.cpp │ │ ├── ovkCScheduler.h │ │ ├── ovkCSimulatedBox.cpp │ │ ├── ovkCSimulatedBox.h │ │ ├── ovkCTransformAnimator.cpp │ │ ├── ovkCTransformAnimator.h │ │ ├── ovkCVertexBufferAnimator.cpp │ │ ├── ovkCVertexBufferAnimator.h │ │ ├── ovkCVertexData.cpp │ │ ├── ovkCVertexData.h │ │ ├── ovkMaterialAction.cpp │ │ ├── ovkMaterialAction.h │ │ ├── ovkTMessage.h │ │ └── ovkTMessage.inl │ ├── plugins │ │ ├── ovkCPluginManager.cpp │ │ ├── ovkCPluginManager.h │ │ ├── ovkCPluginModule.cpp │ │ └── ovkCPluginModule.h │ ├── scenario │ │ ├── ovkCBox.cpp │ │ ├── ovkCBox.h │ │ ├── ovkCBoxListenerContext.h │ │ ├── ovkCBoxProto.cpp │ │ ├── ovkCBoxProto.h │ │ ├── ovkCComment.cpp │ │ ├── ovkCComment.h │ │ ├── ovkCLink.cpp │ │ ├── ovkCLink.h │ │ ├── ovkCProcessingUnit.cpp │ │ ├── ovkCProcessingUnit.h │ │ ├── ovkCScenario.cpp │ │ ├── ovkCScenario.h │ │ ├── ovkCScenarioExporterContext.cpp │ │ ├── ovkCScenarioExporterContext.h │ │ ├── ovkCScenarioImporterContext.cpp │ │ ├── ovkCScenarioImporterContext.h │ │ ├── ovkCScenarioManager.cpp │ │ ├── ovkCScenarioManager.h │ │ └── ovkTAttributable.h │ └── visualisation │ │ ├── ovkCVisualisationContext.cpp │ │ ├── ovkCVisualisationContext.h │ │ ├── ovkCVisualisationManager.cpp │ │ ├── ovkCVisualisationManager.h │ │ ├── ovkCVisualisationTree.cpp │ │ ├── ovkCVisualisationTree.h │ │ ├── ovkCVisualisationWidget.cpp │ │ └── ovkCVisualisationWidget.h │ ├── ovk_base.h │ ├── ovk_defines.h │ ├── ovk_main.cpp │ ├── ovk_tools.h │ └── tools │ ├── ovkCKernelObjectFactoryHelper.h │ ├── ovkCScopeTester.cpp │ ├── ovkCScopeTester.h │ ├── ovk_bridge_bind_function.h │ └── ovk_identifier_map_iterator.h ├── openvibe-modules ├── automaton │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── automaton │ │ ├── CIdentifier.cpp │ │ ├── CIdentifier.h │ │ ├── IAutomatonContext.cpp │ │ ├── IAutomatonContext.h │ │ ├── IAutomatonController.cpp │ │ ├── IAutomatonController.h │ │ ├── INode.h │ │ ├── INodeFactory.cpp │ │ ├── INodeFactory.h │ │ ├── IXMLAutomatonReader.cpp │ │ ├── IXMLAutomatonReader.h │ │ ├── IXMLNodeReader.h │ │ ├── IXMLNodeReaderFactory.cpp │ │ ├── IXMLNodeReaderFactory.h │ │ ├── TXMLReader.hpp │ │ ├── XMLNodeReader │ │ │ ├── CXMLActionSendEventNodeReader.cpp │ │ │ ├── CXMLActionSendEventNodeReader.hpp │ │ │ ├── CXMLActionWaitEventNodeReader.cpp │ │ │ ├── CXMLActionWaitEventNodeReader.hpp │ │ │ ├── CXMLActionWaitTimeNodeReader.cpp │ │ │ ├── CXMLActionWaitTimeNodeReader.hpp │ │ │ ├── CXMLLoopFiniteNodeReader.cpp │ │ │ ├── CXMLLoopFiniteNodeReader.hpp │ │ │ ├── CXMLLoopInfiniteNodeReader.cpp │ │ │ ├── CXMLLoopInfiniteNodeReader.hpp │ │ │ ├── CXMLLoopWaitEventNodeReader.cpp │ │ │ ├── CXMLLoopWaitEventNodeReader.hpp │ │ │ ├── CXMLParameterReader.cpp │ │ │ ├── CXMLParameterReader.hpp │ │ │ ├── CXMLRandomOrderNodeReader.cpp │ │ │ ├── CXMLRandomOrderNodeReader.hpp │ │ │ ├── CXMLSwitchEventNodeReader.cpp │ │ │ ├── CXMLSwitchEventNodeReader.hpp │ │ │ ├── CXMLSwitchProbabilistNodeReader.cpp │ │ │ └── CXMLSwitchProbabilistNodeReader.hpp │ │ ├── defines.h │ │ └── node │ │ │ ├── CNodeAction.cpp │ │ │ ├── CNodeAction.hpp │ │ │ ├── CNodeLoop.cpp │ │ │ ├── CNodeLoop.hpp │ │ │ ├── CNodeRandomOrder.cpp │ │ │ ├── CNodeRandomOrder.hpp │ │ │ ├── CNodeSwitch.cpp │ │ │ ├── CNodeSwitch.hpp │ │ │ ├── TNode.inl │ │ │ └── TNodeLoop.inl │ │ └── main.cpp ├── ebml │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── matroska_ebml_syntax.txt │ │ ├── src │ │ ├── doc │ │ │ ├── FormatingEBMLStreams.dox │ │ │ ├── MainPage.dox │ │ │ ├── Namespaces.dox │ │ │ ├── ParsingEBMLStreams.dox │ │ │ ├── WhatIsEBML.dox │ │ │ ├── doxyfile │ │ │ ├── ebml_formating_class.dia │ │ │ ├── ebml_formating_class.png │ │ │ ├── ebml_formating_concept.dia │ │ │ ├── ebml_formating_concept.png │ │ │ ├── ebml_parsing_class.dia │ │ │ ├── ebml_parsing_class.png │ │ │ ├── ebml_parsing_concept.dia │ │ │ └── ebml_parsing_concept.png │ │ ├── ebml │ │ │ ├── CIdentifier.cpp │ │ │ ├── CIdentifier.h │ │ │ ├── CReader.cpp │ │ │ ├── CReader.h │ │ │ ├── CReaderHelper.cpp │ │ │ ├── CReaderHelper.h │ │ │ ├── CWriter.cpp │ │ │ ├── CWriter.h │ │ │ ├── CWriterHelper.cpp │ │ │ ├── CWriterHelper.h │ │ │ ├── IReader.cpp │ │ │ ├── IReader.h │ │ │ ├── IReaderHelper.cpp │ │ │ ├── IReaderHelper.h │ │ │ ├── IWriter.cpp │ │ │ ├── IWriter.h │ │ │ ├── IWriterHelper.cpp │ │ │ ├── IWriterHelper.h │ │ │ ├── TReaderCallbackProxy.h │ │ │ ├── TWriterCallbackProxy.h │ │ │ └── defines.h │ │ └── main.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── test_ebml_read.cpp │ │ ├── test_ebml_tree.cpp │ │ └── test_ebml_write.cpp ├── fs │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── src │ │ ├── doc │ │ │ └── doxyfile │ │ ├── fs │ │ │ ├── Files.cpp │ │ │ ├── Files.h │ │ │ ├── IEntryEnumerator.cpp │ │ │ ├── IEntryEnumerator.h │ │ │ └── defines.h │ │ └── main.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── test_fs.cpp ├── socket │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── src │ │ ├── main.cpp │ │ └── socket │ │ │ ├── IConnection.cpp │ │ │ ├── IConnection.h │ │ │ ├── IConnection.inl │ │ │ ├── IConnectionClient.cpp │ │ │ ├── IConnectionClient.h │ │ │ ├── IConnectionServer.cpp │ │ │ ├── IConnectionServer.h │ │ │ └── defines.h │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── test_socket_client.cpp │ │ └── test_socket_server.cpp ├── stream │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── main.cpp │ │ └── stream │ │ ├── CInputStreamBase.cpp │ │ ├── CInputStreamBase.hpp │ │ ├── CInputStreamFile.cpp │ │ ├── CInputStreamFile.hpp │ │ ├── CInputStreamHelper.cpp │ │ ├── CInputStreamHelper.hpp │ │ ├── CInputStreamMemory.cpp │ │ ├── CInputStreamMemory.hpp │ │ ├── COutputStreamBase.cpp │ │ ├── COutputStreamBase.hpp │ │ ├── COutputStreamFile.cpp │ │ ├── COutputStreamFile.hpp │ │ ├── COutputStreamHelper.cpp │ │ ├── COutputStreamHelper.hpp │ │ ├── COutputStreamMemory.cpp │ │ ├── COutputStreamMemory.hpp │ │ ├── IInputStream.h │ │ ├── IInputStreamHelper.h │ │ ├── IOutputStream.h │ │ ├── IOutputStreamHelper.h │ │ └── defines.h ├── system │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── src │ │ ├── doc │ │ │ └── doxyfile │ │ ├── main.cpp │ │ └── system │ │ │ ├── CChrono.cpp │ │ │ ├── CChrono.h │ │ │ ├── Math.cpp │ │ │ ├── Math.h │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── Time.cpp │ │ │ ├── Time.h │ │ │ └── defines.h │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── test_endian.cpp │ │ └── test_time.cpp └── xml │ └── trunc │ ├── CMakeLists.txt │ ├── src │ ├── doc │ │ └── doxyfile │ ├── main.cpp │ └── xml │ │ ├── IReader.cpp │ │ ├── IReader.h │ │ ├── IWriter.cpp │ │ ├── IWriter.h │ │ ├── TReaderCallbackProxy.h │ │ ├── TWriterCallbackProxy.h │ │ └── defines.h │ └── test │ ├── CMakeLists.txt │ ├── test_xml_read.cpp │ └── test_xml_write.cpp ├── openvibe-plugins ├── acquisition │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── box-algorithms │ │ └── acquisition │ │ │ ├── ovpCBoxAlgorithmAcquisitionClient.cpp │ │ │ └── ovpCBoxAlgorithmAcquisitionClient.h │ │ ├── doc │ │ ├── BoxAlgorithm_GenericNetworkAcquisition.dox-part │ │ ├── Doc_BoxAlgorithm_AcquisitionClient.dox-part │ │ ├── Doc_BoxAlgorithm_GenericNetworkAcquisition.dox-part │ │ └── genericnetworkacquisition.png │ │ ├── ovpCGenericNetworkAcquisition.cpp │ │ ├── ovpCGenericNetworkAcquisition.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── classification-gpl │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ └── classification │ │ │ ├── ovpCAlgorithmClassifierBliffCFIS.cpp │ │ │ ├── ovpCAlgorithmClassifierBliffCFIS.h │ │ │ ├── ovpCAlgorithmClassifierBliffLDA.cpp │ │ │ ├── ovpCAlgorithmClassifierBliffLDA.h │ │ │ ├── ovpCAlgorithmClassifierLDA.cpp │ │ │ └── ovpCAlgorithmClassifierLDA.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── classification │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ ├── classification │ │ │ ├── libSVM │ │ │ │ ├── svm.cpp │ │ │ │ └── svm.h │ │ │ ├── ovpCAlgorithmClassifierNULL.cpp │ │ │ ├── ovpCAlgorithmClassifierNULL.h │ │ │ ├── ovpCAlgorithmClassifierSVM.cpp │ │ │ └── ovpCAlgorithmClassifierSVM.h │ │ └── confusion-matrix │ │ │ ├── ovpCAlgorithmConfusionMatrix.cpp │ │ │ └── ovpCAlgorithmConfusionMatrix.h │ │ ├── box-algorithms │ │ ├── classification │ │ │ ├── ovpCBoxAlgorithmClassifierProcessor.cpp │ │ │ ├── ovpCBoxAlgorithmClassifierProcessor.h │ │ │ ├── ovpCBoxAlgorithmClassifierTrainer.cpp │ │ │ ├── ovpCBoxAlgorithmClassifierTrainer.h │ │ │ ├── ovpCBoxAlgorithmCommonClassifierListener.inl │ │ │ ├── ovpCBoxAlgorithmVotingClassifier.cpp │ │ │ └── ovpCBoxAlgorithmVotingClassifier.h │ │ └── confusion-matrix │ │ │ ├── ovpCBoxAlgorithmConfusionMatrix.cpp │ │ │ └── ovpCBoxAlgorithmConfusionMatrix.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_ClassifierProcessor.dox-part │ │ ├── Doc_BoxAlgorithm_ClassifierTrainer.dox-part │ │ ├── Doc_BoxAlgorithm_ConfusionMatrix.dox-part │ │ ├── Doc_BoxAlgorithm_VotingClassifier.dox-part │ │ └── ovpCLDAClassifier.dox │ │ ├── ovpCLDAClassifier.cpp │ │ ├── ovpCLDAClassifier.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── feature-extraction │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── doc │ │ └── Doc_BoxAlgorithm_FeatureAggregator.dox-part │ │ ├── ovpCFeatureAggregator.cpp │ │ ├── ovpCFeatureAggregator.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── file-io │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── electrode_sets │ │ │ ├── electrode_set_standard_cartesian.txt │ │ │ └── electrode_set_standard_spherical.txt │ │ └── src │ │ ├── algorithms │ │ └── file-reading-and-writing │ │ │ ├── brainamp │ │ │ ├── ovpCAlgorithmBrainampFileReader.cpp │ │ │ └── ovpCAlgorithmBrainampFileReader.h │ │ │ ├── ovpCAlgorithmOVMatrixFileReader.cpp │ │ │ ├── ovpCAlgorithmOVMatrixFileReader.h │ │ │ ├── ovpCAlgorithmOVMatrixFileWriter.cpp │ │ │ ├── ovpCAlgorithmOVMatrixFileWriter.h │ │ │ └── xml-scenario │ │ │ ├── ovpCAlgorithmXMLScenarioExporter.cpp │ │ │ ├── ovpCAlgorithmXMLScenarioExporter.h │ │ │ ├── ovpCAlgorithmXMLScenarioImporter.cpp │ │ │ └── ovpCAlgorithmXMLScenarioImporter.h │ │ ├── box-algorithms │ │ └── file-reading-and-writing │ │ │ ├── bci2000reader │ │ │ ├── ovpCBCI2000ReaderHelper.cpp │ │ │ ├── ovpCBCI2000ReaderHelper.h │ │ │ ├── ovpCBitfield.cpp │ │ │ ├── ovpCBitfield.h │ │ │ ├── ovpCBoxAlgorithmBCI2000Reader.cpp │ │ │ └── ovpCBoxAlgorithmBCI2000Reader.h │ │ │ ├── brainamp │ │ │ ├── ovpCBoxAlgorithmBrainampFileReader.cpp │ │ │ └── ovpCBoxAlgorithmBrainampFileReader.h │ │ │ ├── csv │ │ │ ├── ovpCBoxAlgorithmCSVFileReader.cpp │ │ │ ├── ovpCBoxAlgorithmCSVFileReader.h │ │ │ ├── ovpCBoxAlgorithmCSVFileWriter.cpp │ │ │ └── ovpCBoxAlgorithmCSVFileWriter.h │ │ │ ├── edf │ │ │ ├── edflib.c │ │ │ ├── edflib.h │ │ │ ├── ovpCBoxAlgorithmEDFFileWriter.cpp │ │ │ └── ovpCBoxAlgorithmEDFFileWriter.h │ │ │ ├── openvibe │ │ │ ├── ovpCBoxAlgorithmGenericStreamReader.cpp │ │ │ ├── ovpCBoxAlgorithmGenericStreamReader.h │ │ │ ├── ovpCBoxAlgorithmGenericStreamWriter.cpp │ │ │ └── ovpCBoxAlgorithmGenericStreamWriter.h │ │ │ ├── ovpCBoxAlgorithmElectrodeLocalizationFileReader.cpp │ │ │ └── ovpCBoxAlgorithmElectrodeLocalizationFileReader.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_BCI2000FileReader.dox-part │ │ ├── Doc_BoxAlgorithm_BCICompetitionIIIbReader.dox-part │ │ ├── Doc_BoxAlgorithm_BrainampFileReader.dox-part │ │ ├── Doc_BoxAlgorithm_CSVFileReader.dox-part │ │ ├── Doc_BoxAlgorithm_CSVFileWriter.dox-part │ │ ├── Doc_BoxAlgorithm_EDFFileWriter.dox-part │ │ ├── Doc_BoxAlgorithm_ElectrodeLocalisationFileReader.dox-part │ │ ├── Doc_BoxAlgorithm_GDFFileReader.dox-part │ │ ├── Doc_BoxAlgorithm_GDFFileWriter.dox-part │ │ ├── Doc_BoxAlgorithm_GenericStreamReader.dox-part │ │ ├── Doc_BoxAlgorithm_GenericStreamWriter.dox-part │ │ └── Doc_BoxAlgorithm_SignalConcatenation.dox-part │ │ ├── ovpCBCICompetitionIIIbReader.cpp │ │ ├── ovpCBCICompetitionIIIbReader.h │ │ ├── ovpCBoxAlgorithmSignalConcatenation.cpp │ │ ├── ovpCBoxAlgorithmSignalConcatenation.h │ │ ├── ovpCGDFFileReader.cpp │ │ ├── ovpCGDFFileReader.h │ │ ├── ovpCGDFFileWriter.cpp │ │ ├── ovpCGDFFileWriter.h │ │ ├── ovp_defines.h │ │ ├── ovp_gdf_helpers.cpp │ │ ├── ovp_gdf_helpers.h │ │ └── ovp_main.cpp ├── matlab │ ├── branches │ │ └── wip-lbonnet-matlabdll │ │ │ ├── CMakeLists.txt │ │ │ ├── share │ │ │ ├── compilation.m │ │ │ ├── ovm_initialize.m │ │ │ ├── ovm_processBuffer.m │ │ │ ├── ovm_processHeader.m │ │ │ ├── ovm_test.dll │ │ │ └── ovm_uninitialize.m │ │ │ └── src │ │ │ ├── box-algorithms │ │ │ └── tools │ │ │ │ ├── ovpCBoxAlgorithmMatlabFilter.cpp │ │ │ │ └── ovpCBoxAlgorithmMatlabFilter.h │ │ │ ├── doc │ │ │ ├── Doc_BoxAlgorithm_MatlabFilter.dox-part │ │ │ ├── matlab_run_full.png │ │ │ └── matlab_scenar_config.png │ │ │ ├── ovp_defines.h │ │ │ └── ovp_main.cpp │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_MatlabFilter.dox-part │ │ ├── Doc_BoxAlgorithm_MatlabScripting.dox-part │ │ ├── matlab_run_full.png │ │ └── matlab_scenar_config.png │ │ ├── ovpCBoxAlgorithmMatlabFilter.cpp │ │ ├── ovpCBoxAlgorithmMatlabFilter.h │ │ ├── ovpCBoxAlgorithmMatlabScripting.cpp │ │ ├── ovpCBoxAlgorithmMatlabScripting.h │ │ ├── ovpCMatlabHelper.cpp │ │ ├── ovpCMatlabHelper.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── python │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-plugins │ │ │ └── python │ │ │ ├── StimulationsCodes.py │ │ │ └── openvibe.py │ │ └── src │ │ ├── doc │ │ └── Doc_BoxAlgorithm_PythonScripting.dox-part │ │ ├── ovpCBoxAlgorithmPython.cpp │ │ ├── ovpCBoxAlgorithmPython.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── samples │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ ├── ovpCAlgorithmAddition.cpp │ │ └── ovpCAlgorithmAddition.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_ClockStimulator.dox-part │ │ ├── Doc_BoxAlgorithm_CodecToolkitTestbox.dox-part │ │ ├── Doc_BoxAlgorithm_Identity.dox-part │ │ ├── Doc_BoxAlgorithm_SinusOscillator.dox-part │ │ ├── Doc_BoxAlgorithm_TimeSignal.dox-part │ │ ├── sinussignalgenerator_online.png │ │ └── sinussignalgenerator_scenario.png │ │ ├── ovpCBoxAlgorithmAdditionTest.cpp │ │ ├── ovpCBoxAlgorithmAdditionTest.h │ │ ├── ovpCBoxAlgorithmClock.cpp │ │ ├── ovpCBoxAlgorithmClock.h │ │ ├── ovpCBoxAlgorithmClockStimulator.cpp │ │ ├── ovpCBoxAlgorithmClockStimulator.h │ │ ├── ovpCBoxAlgorithmMeanVariance.cpp │ │ ├── ovpCBoxAlgorithmMeanVariance.h │ │ ├── ovpCBoxAlgorithmNothing.cpp │ │ ├── ovpCBoxAlgorithmNothing.h │ │ ├── ovpCCrashingBox.h │ │ ├── ovpCIdentity.cpp │ │ ├── ovpCIdentity.h │ │ ├── ovpCLog.cpp │ │ ├── ovpCLog.h │ │ ├── ovpCScenarioExporterSVG.cpp │ │ ├── ovpCScenarioExporterSVG.h │ │ ├── ovpCScenarioExporterXML.cpp │ │ ├── ovpCScenarioExporterXML.h │ │ ├── ovpCScenarioImporterXML.cpp │ │ ├── ovpCScenarioImporterXML.h │ │ ├── ovpCSinusSignalGenerator.cpp │ │ ├── ovpCSinusSignalGenerator.h │ │ ├── ovpCTest.cpp │ │ ├── ovpCTest.h │ │ ├── ovpCTestCodecToolkit.cpp │ │ ├── ovpCTestCodecToolkit.h │ │ ├── ovpCTimeSignalGenerator.cpp │ │ ├── ovpCTimeSignalGenerator.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── signal-processing-gpl │ ├── branches │ │ └── wip-emaby │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ ├── algorithms │ │ │ ├── basic │ │ │ │ ├── ovpCDetectingMinMax.cpp │ │ │ │ ├── ovpCDetectingMinMax.h │ │ │ │ ├── ovpCDownsampling.cpp │ │ │ │ └── ovpCDownsampling.h │ │ │ ├── classif │ │ │ │ ├── ovpCApplyFisherLdaFunction.cpp │ │ │ │ ├── ovpCApplyFisherLdaFunction.h │ │ │ │ ├── ovpCComputeFisherLdaFunction.cpp │ │ │ │ ├── ovpCComputeFisherLdaFunction.h │ │ │ │ ├── ovpCFeatureExtractionLda.cpp │ │ │ │ ├── ovpCFeatureExtractionLda.h │ │ │ │ ├── ovpCNaiveBayesApplyFunction.cpp │ │ │ │ └── ovpCNaiveBayesApplyFunction.h │ │ │ └── filter │ │ │ │ ├── ovpCApplyTemporalFilter.cpp │ │ │ │ ├── ovpCApplyTemporalFilter.h │ │ │ │ ├── ovpCComputeTemporalFilterCoefficients.cpp │ │ │ │ └── ovpCComputeTemporalFilterCoefficients.h │ │ │ ├── box-algorithms │ │ │ ├── basic │ │ │ │ ├── ovpCDetectingMinMaxBoxAlgorithm.cpp │ │ │ │ ├── ovpCDetectingMinMaxBoxAlgorithm.h │ │ │ │ ├── ovpCDownsamplingBoxAlgorithm.cpp │ │ │ │ └── ovpCDownsamplingBoxAlgorithm.h │ │ │ ├── classif │ │ │ │ ├── ovpCLDABoxAlgorithm.cpp │ │ │ │ ├── ovpCLDABoxAlgorithm.h │ │ │ │ ├── ovpCNaiveBayesApplyBoxAlgorithm.cpp │ │ │ │ └── ovpCNaiveBayesApplyBoxAlgorithm.h │ │ │ └── filter │ │ │ │ ├── ovpCBoxAlgorithmCSPSpatialFilterTrainer.cpp │ │ │ │ ├── ovpCBoxAlgorithmCSPSpatialFilterTrainer.h │ │ │ │ ├── ovpCBoxAlgorithmXDAWNSpatialFilterTrainer.cpp │ │ │ │ ├── ovpCBoxAlgorithmXDAWNSpatialFilterTrainer.h │ │ │ │ ├── ovpCTemporalFilterBoxAlgorithm.cpp │ │ │ │ └── ovpCTemporalFilterBoxAlgorithm.h │ │ │ ├── doc │ │ │ ├── BoxAlgorithm_DownsamplingGPL.dox-part │ │ │ ├── BoxAlgorithm_IndependentComponentAnalysisFastICAGPL.dox-part │ │ │ ├── BoxAlgorithm_Min_MaxDetectionGPL.dox-part │ │ │ ├── BoxAlgorithm_TemporalFilterGPL.dox-part │ │ │ ├── BoxAlgorithm_WindowingFunctionsGPL.dox-part │ │ │ ├── Doc_BoxAlgorithm_CSPSpatialFilterTrainer.dox-part │ │ │ ├── Doc_BoxAlgorithm_SpectralAnalysisGPL.dox-part │ │ │ ├── Doc_BoxAlgorithm_XDAWNSpatialFilterTrainer.dox-part │ │ │ ├── csp_training.png │ │ │ └── spectralanalysis_online.png │ │ │ ├── ovpCFastICA.cpp │ │ │ ├── ovpCFastICA.h │ │ │ ├── ovpCSpectralAnalysis.cpp │ │ │ ├── ovpCSpectralAnalysis.h │ │ │ ├── ovpCSpectralAnalysisCospectra.cpp │ │ │ ├── ovpCSpectralAnalysisCospectra.h │ │ │ ├── ovpCTemporalFilter.cpp │ │ │ ├── ovpCTemporalFilter.h │ │ │ ├── ovpCWindowingFunctions.cpp │ │ │ ├── ovpCWindowingFunctions.h │ │ │ ├── ovp_defines.h │ │ │ └── ovp_main.cpp │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ ├── basic │ │ │ ├── ovpCDetectingMinMax.cpp │ │ │ ├── ovpCDetectingMinMax.h │ │ │ ├── ovpCDownsampling.cpp │ │ │ └── ovpCDownsampling.h │ │ ├── classif │ │ │ ├── ovpCApplyFisherLdaFunction.cpp │ │ │ ├── ovpCApplyFisherLdaFunction.h │ │ │ ├── ovpCComputeFisherLdaFunction.cpp │ │ │ ├── ovpCComputeFisherLdaFunction.h │ │ │ ├── ovpCFeatureExtractionLda.cpp │ │ │ ├── ovpCFeatureExtractionLda.h │ │ │ ├── ovpCNaiveBayesApplyFunction.cpp │ │ │ └── ovpCNaiveBayesApplyFunction.h │ │ └── filter │ │ │ ├── ovpCApplyTemporalFilter.cpp │ │ │ ├── ovpCApplyTemporalFilter.h │ │ │ ├── ovpCComputeTemporalFilterCoefficients.cpp │ │ │ └── ovpCComputeTemporalFilterCoefficients.h │ │ ├── box-algorithms │ │ ├── basic │ │ │ ├── ovpCBoxAlgorithmEnvelope.cpp │ │ │ ├── ovpCBoxAlgorithmEnvelope.h │ │ │ ├── ovpCBoxAlgorithmIFFTbox.cpp │ │ │ ├── ovpCBoxAlgorithmIFFTbox.h │ │ │ ├── ovpCDetectingMinMaxBoxAlgorithm.cpp │ │ │ ├── ovpCDetectingMinMaxBoxAlgorithm.h │ │ │ ├── ovpCDownsamplingBoxAlgorithm.cpp │ │ │ └── ovpCDownsamplingBoxAlgorithm.h │ │ ├── classif │ │ │ ├── ovpCLDABoxAlgorithm.cpp │ │ │ ├── ovpCLDABoxAlgorithm.h │ │ │ ├── ovpCNaiveBayesApplyBoxAlgorithm.cpp │ │ │ └── ovpCNaiveBayesApplyBoxAlgorithm.h │ │ └── filter │ │ │ ├── ovpCBoxAlgorithmCSPSpatialFilterTrainer.cpp │ │ │ ├── ovpCBoxAlgorithmCSPSpatialFilterTrainer.h │ │ │ ├── ovpCBoxAlgorithmXDAWNSpatialFilterTrainer.cpp │ │ │ ├── ovpCBoxAlgorithmXDAWNSpatialFilterTrainer.h │ │ │ ├── ovpCTemporalFilterBoxAlgorithm.cpp │ │ │ └── ovpCTemporalFilterBoxAlgorithm.h │ │ ├── doc │ │ ├── BoxAlgorithm_DownsamplingGPL.dox-part │ │ ├── BoxAlgorithm_IndependentComponentAnalysisFastICAGPL.dox-part │ │ ├── BoxAlgorithm_Min_MaxDetectionGPL.dox-part │ │ ├── BoxAlgorithm_TemporalFilterGPL.dox-part │ │ ├── BoxAlgorithm_WindowingFunctionsGPL.dox-part │ │ ├── Doc_BoxAlgorithm_CSPSpatialFilterTrainer.dox-part │ │ ├── Doc_BoxAlgorithm_SpectralAnalysisGPL.dox-part │ │ ├── Doc_BoxAlgorithm_XDAWNSpatialFilterTrainer.dox-part │ │ ├── csp_training.png │ │ └── spectralanalysis_online.png │ │ ├── ovpCFastICA.cpp │ │ ├── ovpCFastICA.h │ │ ├── ovpCSpectralAnalysis.cpp │ │ ├── ovpCSpectralAnalysis.h │ │ ├── ovpCSpectralAnalysisCospectra.cpp │ │ ├── ovpCSpectralAnalysisCospectra.h │ │ ├── ovpCTemporalFilter.cpp │ │ ├── ovpCTemporalFilter.h │ │ ├── ovpCWindowingFunctions.cpp │ │ ├── ovpCWindowingFunctions.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── signal-processing │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ ├── basic │ │ │ ├── ovpCMatrixAverage.cpp │ │ │ └── ovpCMatrixAverage.h │ │ ├── epoching │ │ │ ├── ovpCAlgorithmStimulationBasedEpoching.cpp │ │ │ └── ovpCAlgorithmStimulationBasedEpoching.h │ │ └── filters │ │ │ ├── ovpCApplySpatialFilter.cpp │ │ │ └── ovpCApplySpatialFilter.h │ │ ├── box-algorithms │ │ ├── basic │ │ │ ├── ovpCBoxAlgorithmChannelRename.cpp │ │ │ ├── ovpCBoxAlgorithmChannelRename.h │ │ │ ├── ovpCBoxAlgorithmChannelSelector.cpp │ │ │ ├── ovpCBoxAlgorithmChannelSelector.h │ │ │ ├── ovpCBoxAlgorithmCrop.cpp │ │ │ ├── ovpCBoxAlgorithmCrop.h │ │ │ ├── ovpCBoxAlgorithmDifferentialIntegral.cpp │ │ │ ├── ovpCBoxAlgorithmDifferentialIntegral.h │ │ │ ├── ovpCBoxAlgorithmEpochAverage.cpp │ │ │ ├── ovpCBoxAlgorithmEpochAverage.h │ │ │ ├── ovpCBoxAlgorithmReferenceChannel.cpp │ │ │ ├── ovpCBoxAlgorithmReferenceChannel.h │ │ │ ├── ovpCBoxAlgorithmSignalDecimation.cpp │ │ │ ├── ovpCBoxAlgorithmSignalDecimation.h │ │ │ ├── ovpCBoxAlgorithmSynchro.cpp │ │ │ ├── ovpCBoxAlgorithmSynchro.h │ │ │ ├── ovpCInputChannel.cpp │ │ │ ├── ovpCInputChannel.h │ │ │ ├── ovpCOutputChannel.cpp │ │ │ └── ovpCOutputChannel.h │ │ ├── epoching │ │ │ ├── ovpCBoxAlgorithmStimulationBasedEpoching.cpp │ │ │ └── ovpCBoxAlgorithmStimulationBasedEpoching.h │ │ ├── filters │ │ │ ├── ovpCBoxAlgorithmCommonAverageReference.cpp │ │ │ ├── ovpCBoxAlgorithmCommonAverageReference.h │ │ │ ├── ovpCBoxAlgorithmSpatialFilter.cpp │ │ │ ├── ovpCBoxAlgorithmSpatialFilter.h │ │ │ ├── ovpCSpatialFilterBoxAlgorithm.cpp │ │ │ └── ovpCSpatialFilterBoxAlgorithm.h │ │ └── spectral-analysis │ │ │ ├── ovpCBoxAlgorithmFrequencyBandSelector.cpp │ │ │ ├── ovpCBoxAlgorithmFrequencyBandSelector.h │ │ │ ├── ovpCBoxAlgorithmSpectrumAverage.cpp │ │ │ └── ovpCBoxAlgorithmSpectrumAverage.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_ChannelRename.dox-part │ │ ├── Doc_BoxAlgorithm_ChannelSelector.dox-part │ │ ├── Doc_BoxAlgorithm_ChannelSelectorDeprecated.dox-part │ │ ├── Doc_BoxAlgorithm_CommonAverageReference.dox-part │ │ ├── Doc_BoxAlgorithm_Crop.dox-part │ │ ├── Doc_BoxAlgorithm_EpochAverage.dox-part │ │ ├── Doc_BoxAlgorithm_FirstDifferenceDetrending.dox-part │ │ ├── Doc_BoxAlgorithm_FrequencyBandSelector.dox-part │ │ ├── Doc_BoxAlgorithm_QuadraticForm.dox-part │ │ ├── Doc_BoxAlgorithm_ReferenceChannel.dox-part │ │ ├── Doc_BoxAlgorithm_SecondDifferenceDetrending.dox-part │ │ ├── Doc_BoxAlgorithm_SignalAverage.dox-part │ │ ├── Doc_BoxAlgorithm_SignalDecimation.dox-part │ │ ├── Doc_BoxAlgorithm_SignalDifferential_Integral.dox-part │ │ ├── Doc_BoxAlgorithm_SimpleDSP.dox-part │ │ ├── Doc_BoxAlgorithm_SpatialFilter.dox-part │ │ ├── Doc_BoxAlgorithm_SpectrumAverage.dox-part │ │ ├── Doc_BoxAlgorithm_StimulationBasedEpoching.dox-part │ │ ├── Doc_BoxAlgorithm_StreamSynchronization.dox-part │ │ ├── Doc_BoxAlgorithm_TimeBasedEpoching.dox-part │ │ ├── Doc_BoxAlgorithm_UnivariateStatistics.dox-part │ │ ├── timebasedepoching_1.png │ │ ├── timebasedepoching_2.png │ │ └── timebasedepoching_3.png │ │ ├── ovpCAlgorithmUnivariateStatistics.cpp │ │ ├── ovpCAlgorithmUnivariateStatistics.h │ │ ├── ovpCBandFrequencyAverage.cpp │ │ ├── ovpCBandFrequencyAverage.h │ │ ├── ovpCBoxAlgorithmQuadraticForm.cpp │ │ ├── ovpCBoxAlgorithmQuadraticForm.h │ │ ├── ovpCBoxAlgorithmUnivariateStatistics.cpp │ │ ├── ovpCBoxAlgorithmUnivariateStatistics.h │ │ ├── ovpCChannelSelector.cpp │ │ ├── ovpCChannelSelector.h │ │ ├── ovpCEpoching.cpp │ │ ├── ovpCEpoching.h │ │ ├── ovpCFirstDifferenceDetrending.cpp │ │ ├── ovpCFirstDifferenceDetrending.h │ │ ├── ovpCReferenceChannel.cpp │ │ ├── ovpCReferenceChannel.h │ │ ├── ovpCSecondDifferenceDetrending.cpp │ │ ├── ovpCSecondDifferenceDetrending.h │ │ ├── ovpCSignalAverage.cpp │ │ ├── ovpCSignalAverage.h │ │ ├── ovpCSignalConcat.cpp │ │ ├── ovpCSignalConcat.h │ │ ├── ovpCSimpleDSP.cpp │ │ ├── ovpCSimpleDSP.h │ │ ├── ovpCSimpleDSP │ │ ├── ovpCAbstractTree.cpp │ │ ├── ovpCAbstractTree.h │ │ ├── ovpCEquationParser.cpp │ │ ├── ovpCEquationParser.h │ │ └── ovpCEquationParserGrammar.h │ │ ├── ovpCSteadyStateFrequencyComparison.cpp │ │ ├── ovpCSteadyStateFrequencyComparison.h │ │ ├── ovpCTimeBasedEpoching.cpp │ │ ├── ovpCTimeBasedEpoching.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── simple-visualisation │ ├── branches │ │ └── wip-lbonnet-p300 │ │ │ ├── CMakeLists.txt │ │ │ ├── share │ │ │ └── openvibe-plugins │ │ │ │ └── simple-visualisation │ │ │ │ ├── openvibe-simple-visualisation-ClassifierAccuracyMeasure.ui │ │ │ │ ├── openvibe-simple-visualisation-DisplayCueImage.ui │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-bar.png │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-downArrow.png │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-leftArrow.png │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-rightArrow.png │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-upArrow.png │ │ │ │ ├── openvibe-simple-visualisation-GrazVisualization.ui │ │ │ │ ├── openvibe-simple-visualisation-LevelMeasure.ui │ │ │ │ ├── openvibe-simple-visualisation-MatrixDisplay.ui │ │ │ │ ├── openvibe-simple-visualisation-PowerSpectrumDisplay.ui │ │ │ │ ├── openvibe-simple-visualisation-SignalDisplay.ui │ │ │ │ ├── openvibe-simple-visualisation-Simple3DDisplay.ui │ │ │ │ ├── openvibe-simple-visualisation-TimeFrequencyMapDisplay.ui │ │ │ │ ├── openvibe-simple-visualisation-TopographicMap2D.ui │ │ │ │ ├── openvibe-simple-visualisation-TopographicMap3D.ui │ │ │ │ ├── openvibe-simple-visualisation-VoxelDisplay.ui │ │ │ │ ├── p300-identifier-card.ui │ │ │ │ ├── p300-magic-card.ui │ │ │ │ ├── p300-magic-card │ │ │ │ ├── arkanoid.png │ │ │ │ ├── arkanoid.png-offscreen │ │ │ │ ├── bomberman.png │ │ │ │ ├── bomberman.png-offscreen │ │ │ │ ├── convert.sh │ │ │ │ ├── doom.png │ │ │ │ ├── doom.png-offscreen │ │ │ │ ├── dott.png │ │ │ │ ├── dott.png-offscreen │ │ │ │ ├── lemmings.png │ │ │ │ ├── lemmings.png-offscreen │ │ │ │ ├── mario.png │ │ │ │ ├── mario.png-offscreen │ │ │ │ ├── megaman.png │ │ │ │ ├── megaman.png-offscreen │ │ │ │ ├── openvibe-logo.png │ │ │ │ ├── openvibe-logo.png-offscreen │ │ │ │ ├── pacman.png │ │ │ │ ├── pacman.png-offscreen │ │ │ │ ├── sonic.png │ │ │ │ ├── sonic.png-offscreen │ │ │ │ ├── space-invaders.png │ │ │ │ ├── space-invaders.png-offscreen │ │ │ │ ├── worms.png │ │ │ │ ├── worms.png-offscreen │ │ │ │ ├── zelda.png │ │ │ │ └── zelda.png-offscreen │ │ │ │ ├── p300-speller.ui │ │ │ │ ├── topographicmap3D │ │ │ │ ├── face.mesh │ │ │ │ ├── head.material │ │ │ │ ├── projection_center.mesh │ │ │ │ ├── projection_center.txt │ │ │ │ └── scalp.mesh │ │ │ │ └── voxeldisplay │ │ │ │ ├── ov_unitcube.material │ │ │ │ ├── ov_unitcube.mesh │ │ │ │ ├── ov_unitsphere_80faces.material │ │ │ │ ├── ov_unitsphere_80faces.mesh │ │ │ │ ├── ov_voxeldisplay_face.mesh │ │ │ │ ├── ov_voxeldisplay_head.material │ │ │ │ ├── ov_voxeldisplay_scalp.mesh │ │ │ │ └── voxel_set_2394.txt │ │ │ └── src │ │ │ ├── algorithms │ │ │ ├── linpack.cpp │ │ │ ├── linpack.h │ │ │ ├── ovpCAlgorithmSphericalSplineInterpolation.cpp │ │ │ ├── ovpCAlgorithmSphericalSplineInterpolation.h │ │ │ ├── simple-visualisation │ │ │ │ ├── ovpCAlgorithmLevelMeasure.cpp │ │ │ │ └── ovpCAlgorithmLevelMeasure.h │ │ │ ├── spline_sph.cpp │ │ │ └── spline_sph.h │ │ │ ├── box-algorithms │ │ │ └── simple-visualisation │ │ │ │ ├── ovpCBoxAlgorithmClassifierAccuracyMeasure.cpp │ │ │ │ ├── ovpCBoxAlgorithmClassifierAccuracyMeasure.h │ │ │ │ ├── ovpCBoxAlgorithmLevelMeasure.cpp │ │ │ │ └── ovpCBoxAlgorithmLevelMeasure.h │ │ │ ├── doc │ │ │ ├── Doc_BoxAlgorithm_2DTopographicMap.dox-part │ │ │ ├── Doc_BoxAlgorithm_3DTopographicMap.dox-part │ │ │ ├── Doc_BoxAlgorithm_ClassifierAccuracyMeasure.dox-part │ │ │ ├── Doc_BoxAlgorithm_DisplayCueImage.dox-part │ │ │ ├── Doc_BoxAlgorithm_GrazVisualization.dox-part │ │ │ ├── Doc_BoxAlgorithm_LevelMeasure.dox-part │ │ │ ├── Doc_BoxAlgorithm_MatrixDisplay.dox-part │ │ │ ├── Doc_BoxAlgorithm_P300IdentifierCardVisualisation.dox-part │ │ │ ├── Doc_BoxAlgorithm_P300IdentifierCardVisualisation_Snapshot.png │ │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation.dox-part │ │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation_Snapshot1.png │ │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation_Snapshot2.png │ │ │ ├── Doc_BoxAlgorithm_P300SpellerVisualisation.dox-part │ │ │ ├── Doc_BoxAlgorithm_P300SpellerVisualisation_Snapshot.png │ │ │ ├── Doc_BoxAlgorithm_PowerSpectrumDisplay.dox-part │ │ │ ├── Doc_BoxAlgorithm_SignalDisplay.dox-part │ │ │ ├── Doc_BoxAlgorithm_Simple3DViewer.dox-part │ │ │ ├── Doc_BoxAlgorithm_TimeFrequencyMapDisplay.dox-part │ │ │ ├── Doc_BoxAlgorithm_VoxelDisplay.dox-part │ │ │ ├── matrix_display_online.png │ │ │ ├── powerspectrumdisplay_online.png │ │ │ ├── powerspectrumdisplay_toolbar.png │ │ │ ├── signaldisplay_online.png │ │ │ ├── signaldisplay_toolbar.png │ │ │ ├── simple3dviewer_online.png │ │ │ ├── simple3dviewer_toolbar.png │ │ │ ├── timefrequencymapdisplay_online.png │ │ │ ├── timefrequencymapdisplay_toolbar.png │ │ │ ├── topographicmap2ddisplay_online.png │ │ │ ├── topographicmap2ddisplay_toolbar.png │ │ │ ├── topographicmap3ddisplay_2d_vs_3d_online.png │ │ │ ├── topographicmap3ddisplay_online.png │ │ │ ├── topographicmap3ddisplay_toolbar.png │ │ │ └── voxeldisplay_toolbar.png │ │ │ ├── ovpCBottomTimeRuler.cpp │ │ │ ├── ovpCBottomTimeRuler.h │ │ │ ├── ovpCBoxAlgorithmMatrixDisplay.cpp │ │ │ ├── ovpCBoxAlgorithmMatrixDisplay.h │ │ │ ├── ovpCBoxAlgorithmP300IdentifierCardVisualisation.cpp │ │ │ ├── ovpCBoxAlgorithmP300IdentifierCardVisualisation.h │ │ │ ├── ovpCBoxAlgorithmP300MagicCardVisualisation.cpp │ │ │ ├── ovpCBoxAlgorithmP300MagicCardVisualisation.h │ │ │ ├── ovpCBoxAlgorithmP300SpellerVisualisation.cpp │ │ │ ├── ovpCBoxAlgorithmP300SpellerVisualisation.h │ │ │ ├── ovpCBufferDatabase.cpp │ │ │ ├── ovpCBufferDatabase.h │ │ │ ├── ovpCDisplayCueImage.cpp │ │ │ ├── ovpCDisplayCueImage.h │ │ │ ├── ovpCGrazVisualization.cpp │ │ │ ├── ovpCGrazVisualization.h │ │ │ ├── ovpCPowerSpectrumDisplay.cpp │ │ │ ├── ovpCPowerSpectrumDisplay.h │ │ │ ├── ovpCPowerSpectrumDisplay │ │ │ ├── ovpCPowerSpectrumChannelDisplay.cpp │ │ │ ├── ovpCPowerSpectrumChannelDisplay.h │ │ │ ├── ovpCPowerSpectrumDatabase.cpp │ │ │ ├── ovpCPowerSpectrumDatabase.h │ │ │ ├── ovpCPowerSpectrumDisplayView.cpp │ │ │ └── ovpCPowerSpectrumDisplayView.h │ │ │ ├── ovpCSignalDisplay.cpp │ │ │ ├── ovpCSignalDisplay.h │ │ │ ├── ovpCSignalDisplay │ │ │ ├── ovpCSignalChannelDisplay.cpp │ │ │ ├── ovpCSignalChannelDisplay.h │ │ │ ├── ovpCSignalDisplayLeftRuler.cpp │ │ │ ├── ovpCSignalDisplayLeftRuler.h │ │ │ ├── ovpCSignalDisplayView.cpp │ │ │ └── ovpCSignalDisplayView.h │ │ │ ├── ovpCSimple3DDisplay.cpp │ │ │ ├── ovpCSimple3DDisplay.h │ │ │ ├── ovpCSimple3DDisplay │ │ │ ├── ovpCSimple3DDatabase.cpp │ │ │ ├── ovpCSimple3DDatabase.h │ │ │ ├── ovpCSimple3DView.cpp │ │ │ └── ovpCSimple3DView.h │ │ │ ├── ovpCSpectrumDatabase.cpp │ │ │ ├── ovpCSpectrumDatabase.h │ │ │ ├── ovpCStreamedMatrixDatabase.cpp │ │ │ ├── ovpCStreamedMatrixDatabase.h │ │ │ ├── ovpCTimeFrequencyMapDisplay.cpp │ │ │ ├── ovpCTimeFrequencyMapDisplay.h │ │ │ ├── ovpCTimeFrequencyMapDisplay │ │ │ ├── ovpCTimeFrequencyMapChannelDisplay.cpp │ │ │ ├── ovpCTimeFrequencyMapChannelDisplay.h │ │ │ ├── ovpCTimeFrequencyMapDisplayView.cpp │ │ │ └── ovpCTimeFrequencyMapDisplayView.h │ │ │ ├── ovpCTimeRuler.cpp │ │ │ ├── ovpCTimeRuler.h │ │ │ ├── ovpCTopographicMap2DDisplay.cpp │ │ │ ├── ovpCTopographicMap2DDisplay.h │ │ │ ├── ovpCTopographicMap2DDisplay │ │ │ ├── ovpCTopographicMap2DView.cpp │ │ │ └── ovpCTopographicMap2DView.h │ │ │ ├── ovpCTopographicMap3DDisplay.cpp │ │ │ ├── ovpCTopographicMap3DDisplay.h │ │ │ ├── ovpCTopographicMap3DDisplay │ │ │ ├── ovpCTopographicMap3DView.cpp │ │ │ └── ovpCTopographicMap3DView.h │ │ │ ├── ovpCTopographicMapDatabase.cpp │ │ │ ├── ovpCTopographicMapDatabase.h │ │ │ ├── ovpCVoxelDisplay.cpp │ │ │ ├── ovpCVoxelDisplay.h │ │ │ ├── ovpCVoxelDisplay │ │ │ ├── ovpCVoxelView.cpp │ │ │ └── ovpCVoxelView.h │ │ │ ├── ovpIStreamDatabase.h │ │ │ ├── ovp_defines.h │ │ │ └── ovp_main.cpp │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-plugins │ │ │ └── simple-visualisation │ │ │ ├── openvibe-simple-visualisation-ClassifierAccuracyMeasure.ui │ │ │ ├── openvibe-simple-visualisation-DisplayCueImage.ui │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-bar.png │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-downArrow.png │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-leftArrow.png │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-rightArrow.png │ │ │ ├── openvibe-simple-visualisation-GrazVisualization-upArrow.png │ │ │ ├── openvibe-simple-visualisation-GrazVisualization.ui │ │ │ ├── openvibe-simple-visualisation-LevelMeasure.ui │ │ │ ├── openvibe-simple-visualisation-MatrixDisplay.ui │ │ │ ├── openvibe-simple-visualisation-PowerSpectrumDisplay.ui │ │ │ ├── openvibe-simple-visualisation-SignalDisplay.ui │ │ │ ├── openvibe-simple-visualisation-Simple3DDisplay.ui │ │ │ ├── openvibe-simple-visualisation-TimeFrequencyMapDisplay.ui │ │ │ ├── openvibe-simple-visualisation-TopographicMap2D.ui │ │ │ ├── openvibe-simple-visualisation-TopographicMap3D.ui │ │ │ ├── openvibe-simple-visualisation-VoxelDisplay.ui │ │ │ ├── p300-identifier-card.ui │ │ │ ├── p300-magic-card.ui │ │ │ ├── p300-magic-card │ │ │ ├── arkanoid.png │ │ │ ├── arkanoid.png-offscreen │ │ │ ├── bomberman.png │ │ │ ├── bomberman.png-offscreen │ │ │ ├── convert.sh │ │ │ ├── doom.png │ │ │ ├── doom.png-offscreen │ │ │ ├── dott.png │ │ │ ├── dott.png-offscreen │ │ │ ├── lemmings.png │ │ │ ├── lemmings.png-offscreen │ │ │ ├── mario.png │ │ │ ├── mario.png-offscreen │ │ │ ├── megaman.png │ │ │ ├── megaman.png-offscreen │ │ │ ├── openvibe-logo.png │ │ │ ├── openvibe-logo.png-offscreen │ │ │ ├── pacman.png │ │ │ ├── pacman.png-offscreen │ │ │ ├── sonic.png │ │ │ ├── sonic.png-offscreen │ │ │ ├── space-invaders.png │ │ │ ├── space-invaders.png-offscreen │ │ │ ├── worms.png │ │ │ ├── worms.png-offscreen │ │ │ ├── zelda.png │ │ │ └── zelda.png-offscreen │ │ │ ├── p300-speller.ui │ │ │ ├── topographicmap3D │ │ │ ├── face.mesh │ │ │ ├── head.material │ │ │ ├── projection_center.mesh │ │ │ ├── projection_center.txt │ │ │ └── scalp.mesh │ │ │ └── voxeldisplay │ │ │ ├── ov_unitcube.material │ │ │ ├── ov_unitcube.mesh │ │ │ ├── ov_unitsphere_80faces.material │ │ │ ├── ov_unitsphere_80faces.mesh │ │ │ ├── ov_voxeldisplay_face.mesh │ │ │ ├── ov_voxeldisplay_head.material │ │ │ ├── ov_voxeldisplay_scalp.mesh │ │ │ └── voxel_set_2394.txt │ │ └── src │ │ ├── algorithms │ │ ├── linpack.cpp │ │ ├── linpack.h │ │ ├── ovpCAlgorithmSphericalSplineInterpolation.cpp │ │ ├── ovpCAlgorithmSphericalSplineInterpolation.h │ │ ├── simple-visualisation │ │ │ ├── ovpCAlgorithmLevelMeasure.cpp │ │ │ └── ovpCAlgorithmLevelMeasure.h │ │ ├── spline_sph.cpp │ │ └── spline_sph.h │ │ ├── box-algorithms │ │ └── simple-visualisation │ │ │ ├── ovpCBoxAlgorithmClassifierAccuracyMeasure.cpp │ │ │ ├── ovpCBoxAlgorithmClassifierAccuracyMeasure.h │ │ │ ├── ovpCBoxAlgorithmLevelMeasure.cpp │ │ │ └── ovpCBoxAlgorithmLevelMeasure.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_2DTopographicMap.dox-part │ │ ├── Doc_BoxAlgorithm_3DTopographicMap.dox-part │ │ ├── Doc_BoxAlgorithm_ClassifierAccuracyMeasure.dox-part │ │ ├── Doc_BoxAlgorithm_DisplayCueImage.dox-part │ │ ├── Doc_BoxAlgorithm_GrazVisualization.dox-part │ │ ├── Doc_BoxAlgorithm_LevelMeasure.dox-part │ │ ├── Doc_BoxAlgorithm_MatrixDisplay.dox-part │ │ ├── Doc_BoxAlgorithm_P300IdentifierCardVisualisation.dox-part │ │ ├── Doc_BoxAlgorithm_P300IdentifierCardVisualisation_Snapshot.png │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation.dox-part │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation_Snapshot1.png │ │ ├── Doc_BoxAlgorithm_P300MagicCardVisualisation_Snapshot2.png │ │ ├── Doc_BoxAlgorithm_P300SpellerVisualisation.dox-part │ │ ├── Doc_BoxAlgorithm_P300SpellerVisualisation_Snapshot.png │ │ ├── Doc_BoxAlgorithm_PowerSpectrumDisplay.dox-part │ │ ├── Doc_BoxAlgorithm_SignalDisplay.dox-part │ │ ├── Doc_BoxAlgorithm_Simple3DViewer.dox-part │ │ ├── Doc_BoxAlgorithm_TimeFrequencyMapDisplay.dox-part │ │ ├── Doc_BoxAlgorithm_VoxelDisplay.dox-part │ │ ├── matrix_display_online.png │ │ ├── powerspectrumdisplay_online.png │ │ ├── powerspectrumdisplay_toolbar.png │ │ ├── signaldisplay_online.png │ │ ├── signaldisplay_toolbar.png │ │ ├── simple3dviewer_online.png │ │ ├── simple3dviewer_toolbar.png │ │ ├── timefrequencymapdisplay_online.png │ │ ├── timefrequencymapdisplay_toolbar.png │ │ ├── topographicmap2ddisplay_online.png │ │ ├── topographicmap2ddisplay_toolbar.png │ │ ├── topographicmap3ddisplay_2d_vs_3d_online.png │ │ ├── topographicmap3ddisplay_online.png │ │ ├── topographicmap3ddisplay_toolbar.png │ │ └── voxeldisplay_toolbar.png │ │ ├── ovpCBottomTimeRuler.cpp │ │ ├── ovpCBottomTimeRuler.h │ │ ├── ovpCBoxAlgorithmMatrixDisplay.cpp │ │ ├── ovpCBoxAlgorithmMatrixDisplay.h │ │ ├── ovpCBoxAlgorithmP300IdentifierCardVisualisation.cpp │ │ ├── ovpCBoxAlgorithmP300IdentifierCardVisualisation.h │ │ ├── ovpCBoxAlgorithmP300MagicCardVisualisation.cpp │ │ ├── ovpCBoxAlgorithmP300MagicCardVisualisation.h │ │ ├── ovpCBoxAlgorithmP300SpellerVisualisation.cpp │ │ ├── ovpCBoxAlgorithmP300SpellerVisualisation.h │ │ ├── ovpCBufferDatabase.cpp │ │ ├── ovpCBufferDatabase.h │ │ ├── ovpCDisplayCueImage.cpp │ │ ├── ovpCDisplayCueImage.h │ │ ├── ovpCGrazVisualization.cpp │ │ ├── ovpCGrazVisualization.h │ │ ├── ovpCPowerSpectrumDisplay.cpp │ │ ├── ovpCPowerSpectrumDisplay.h │ │ ├── ovpCPowerSpectrumDisplay │ │ ├── ovpCPowerSpectrumChannelDisplay.cpp │ │ ├── ovpCPowerSpectrumChannelDisplay.h │ │ ├── ovpCPowerSpectrumDatabase.cpp │ │ ├── ovpCPowerSpectrumDatabase.h │ │ ├── ovpCPowerSpectrumDisplayView.cpp │ │ └── ovpCPowerSpectrumDisplayView.h │ │ ├── ovpCSignalDisplay.cpp │ │ ├── ovpCSignalDisplay.h │ │ ├── ovpCSignalDisplay │ │ ├── ovpCSignalChannelDisplay.cpp │ │ ├── ovpCSignalChannelDisplay.h │ │ ├── ovpCSignalDisplayLeftRuler.cpp │ │ ├── ovpCSignalDisplayLeftRuler.h │ │ ├── ovpCSignalDisplayView.cpp │ │ └── ovpCSignalDisplayView.h │ │ ├── ovpCSimple3DDisplay.cpp │ │ ├── ovpCSimple3DDisplay.h │ │ ├── ovpCSimple3DDisplay │ │ ├── ovpCSimple3DDatabase.cpp │ │ ├── ovpCSimple3DDatabase.h │ │ ├── ovpCSimple3DView.cpp │ │ └── ovpCSimple3DView.h │ │ ├── ovpCSpectrumDatabase.cpp │ │ ├── ovpCSpectrumDatabase.h │ │ ├── ovpCStreamedMatrixDatabase.cpp │ │ ├── ovpCStreamedMatrixDatabase.h │ │ ├── ovpCTimeFrequencyMapDisplay.cpp │ │ ├── ovpCTimeFrequencyMapDisplay.h │ │ ├── ovpCTimeFrequencyMapDisplay │ │ ├── ovpCTimeFrequencyMapChannelDisplay.cpp │ │ ├── ovpCTimeFrequencyMapChannelDisplay.h │ │ ├── ovpCTimeFrequencyMapDisplayView.cpp │ │ └── ovpCTimeFrequencyMapDisplayView.h │ │ ├── ovpCTimeRuler.cpp │ │ ├── ovpCTimeRuler.h │ │ ├── ovpCTopographicMap2DDisplay.cpp │ │ ├── ovpCTopographicMap2DDisplay.h │ │ ├── ovpCTopographicMap2DDisplay │ │ ├── ovpCTopographicMap2DView.cpp │ │ └── ovpCTopographicMap2DView.h │ │ ├── ovpCTopographicMap3DDisplay.cpp │ │ ├── ovpCTopographicMap3DDisplay.h │ │ ├── ovpCTopographicMap3DDisplay │ │ ├── ovpCTopographicMap3DView.cpp │ │ └── ovpCTopographicMap3DView.h │ │ ├── ovpCTopographicMapDatabase.cpp │ │ ├── ovpCTopographicMapDatabase.h │ │ ├── ovpCVoxelDisplay.cpp │ │ ├── ovpCVoxelDisplay.h │ │ ├── ovpCVoxelDisplay │ │ ├── ovpCVoxelView.cpp │ │ └── ovpCVoxelView.h │ │ ├── ovpIStreamDatabase.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── stimulation │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-plugins │ │ │ └── stimulation │ │ │ ├── graz_keyboard_to_stimulations.txt │ │ │ ├── graz_stimulation_scenario.xml │ │ │ ├── keyboard-stimulator.ui │ │ │ ├── lua-stimulator-legacy.lua │ │ │ ├── lua-stimulator-stim-codes.lua │ │ │ ├── ov_beep.wav │ │ │ ├── sample-lua-script.lua │ │ │ └── simple-keyboard-to-stimulations.txt │ │ └── src │ │ ├── box-algorithms │ │ └── stimulation │ │ │ ├── adaptation │ │ │ ├── ovpCBoxAlgorithmStimulationFilter.cpp │ │ │ └── ovpCBoxAlgorithmStimulationFilter.h │ │ │ ├── ovpCBoxAlgorithmLuaStimulator.cpp │ │ │ ├── ovpCBoxAlgorithmLuaStimulator.h │ │ │ ├── ovpCBoxAlgorithmOpenALSoundPlayer.cpp │ │ │ ├── ovpCBoxAlgorithmOpenALSoundPlayer.h │ │ │ ├── ovpCBoxAlgorithmPlayerController.cpp │ │ │ ├── ovpCBoxAlgorithmPlayerController.h │ │ │ ├── ovpCBoxAlgorithmRunCommand.cpp │ │ │ ├── ovpCBoxAlgorithmRunCommand.h │ │ │ ├── ovpCBoxAlgorithmSoundPlayer.cpp │ │ │ ├── ovpCBoxAlgorithmSoundPlayer.h │ │ │ ├── ovpCBoxAlgorithmStimulationMultiplexer.cpp │ │ │ └── ovpCBoxAlgorithmStimulationMultiplexer.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_KeyboardStimulator.dox-part │ │ ├── Doc_BoxAlgorithm_LuaStimulator.dox-part │ │ ├── Doc_BoxAlgorithm_P300IdentifierStimulator.dox-part │ │ ├── Doc_BoxAlgorithm_P300SpellerStimulator.dox-part │ │ ├── Doc_BoxAlgorithm_RunCommand.dox-part │ │ ├── Doc_BoxAlgorithm_SignChangeDetector.dox-part │ │ ├── Doc_BoxAlgorithm_SoundPlayer.dox-part │ │ ├── Doc_BoxAlgorithm_SoundPlayerDeprecated.dox-part │ │ ├── Doc_BoxAlgorithm_StimulationFilter.dox-part │ │ ├── Doc_BoxAlgorithm_StimulationMultiplexer.dox-part │ │ └── Doc_BoxAlgorithm_XMLStimulationScenarioPlayer.dox-part │ │ ├── ovpCBoxAlgorithmP300IdentifierStimulator.cpp │ │ ├── ovpCBoxAlgorithmP300IdentifierStimulator.h │ │ ├── ovpCBoxAlgorithmP300SpellerStimulator.cpp │ │ ├── ovpCBoxAlgorithmP300SpellerStimulator.h │ │ ├── ovpCKeyboardStimulator.cpp │ │ ├── ovpCKeyboardStimulator.h │ │ ├── ovpCSignChangeDetector.cpp │ │ ├── ovpCSignChangeDetector.h │ │ ├── ovpCXMLStimulationScenarioPlayer.cpp │ │ ├── ovpCXMLStimulationScenarioPlayer.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── stream-codecs │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── algorithms │ │ ├── decoders │ │ │ ├── ovpCAcquisitionDecoder.cpp │ │ │ ├── ovpCAcquisitionDecoder.h │ │ │ ├── ovpCChannelLocalisationDecoder.cpp │ │ │ ├── ovpCChannelLocalisationDecoder.h │ │ │ ├── ovpCEBMLBaseDecoder.cpp │ │ │ ├── ovpCEBMLBaseDecoder.h │ │ │ ├── ovpCExperimentInformationDecoder.cpp │ │ │ ├── ovpCExperimentInformationDecoder.h │ │ │ ├── ovpCFeatureVectorDecoder.cpp │ │ │ ├── ovpCFeatureVectorDecoder.h │ │ │ ├── ovpCSignalDecoder.cpp │ │ │ ├── ovpCSignalDecoder.h │ │ │ ├── ovpCSpectrumDecoder.cpp │ │ │ ├── ovpCSpectrumDecoder.h │ │ │ ├── ovpCStimulationDecoder.cpp │ │ │ ├── ovpCStimulationDecoder.h │ │ │ ├── ovpCStreamedMatrixDecoder.cpp │ │ │ └── ovpCStreamedMatrixDecoder.h │ │ └── encoders │ │ │ ├── ovpCAcquisitionEncoder.cpp │ │ │ ├── ovpCAcquisitionEncoder.h │ │ │ ├── ovpCChannelLocalisationEncoder.cpp │ │ │ ├── ovpCChannelLocalisationEncoder.h │ │ │ ├── ovpCEBMLBaseEncoder.cpp │ │ │ ├── ovpCEBMLBaseEncoder.h │ │ │ ├── ovpCExperimentInformationEncoder.cpp │ │ │ ├── ovpCExperimentInformationEncoder.h │ │ │ ├── ovpCFeatureVectorEncoder.cpp │ │ │ ├── ovpCFeatureVectorEncoder.h │ │ │ ├── ovpCMasterAcquisitionEncoder.cpp │ │ │ ├── ovpCMasterAcquisitionEncoder.h │ │ │ ├── ovpCSignalEncoder.cpp │ │ │ ├── ovpCSignalEncoder.h │ │ │ ├── ovpCSpectrumEncoder.cpp │ │ │ ├── ovpCSpectrumEncoder.h │ │ │ ├── ovpCStimulationEncoder.cpp │ │ │ ├── ovpCStimulationEncoder.h │ │ │ ├── ovpCStreamedMatrixEncoder.cpp │ │ │ └── ovpCStreamedMatrixEncoder.h │ │ ├── box-algorithms │ │ ├── ovpCDecoderAlgorithmTest.cpp │ │ ├── ovpCDecoderAlgorithmTest.h │ │ ├── ovpCEncoderAlgorithmTest.cpp │ │ └── ovpCEncoderAlgorithmTest.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── streaming │ ├── branches │ │ └── wip-emaby │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ ├── box-algorithms │ │ │ └── streaming │ │ │ │ ├── ovpCBoxAlgorithmSignalMerger.cpp │ │ │ │ ├── ovpCBoxAlgorithmSignalMerger.h │ │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMerger.cpp │ │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMerger.h │ │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMultiplexer.cpp │ │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMultiplexer.h │ │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixSwitch.cpp │ │ │ │ └── ovpCBoxAlgorithmStreamedMatrixSwitch.h │ │ │ ├── doc │ │ │ ├── Doc_BoxAlgorithm_SignalMerger.dox-part │ │ │ ├── Doc_BoxAlgorithm_StreamSwitch.dox-part │ │ │ └── Doc_BoxAlgorithm_StreamedMatrixMultiplexer.dox-part │ │ │ ├── ovp_defines.h │ │ │ └── ovp_main.cpp │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── box-algorithms │ │ └── streaming │ │ │ ├── ovpCBoxAlgorithmSignalMerger.cpp │ │ │ ├── ovpCBoxAlgorithmSignalMerger.h │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMultiplexer.cpp │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixMultiplexer.h │ │ │ ├── ovpCBoxAlgorithmStreamedMatrixSwitch.cpp │ │ │ └── ovpCBoxAlgorithmStreamedMatrixSwitch.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_SignalMerger.dox-part │ │ ├── Doc_BoxAlgorithm_StreamSwitch.dox-part │ │ └── Doc_BoxAlgorithm_StreamedMatrixMultiplexer.dox-part │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── tools │ └── trunc │ │ ├── CMakeLists.txt │ │ ├── share │ │ └── openvibe-plugins │ │ │ └── tools │ │ │ └── config-ebml-stream-spy.txt │ │ └── src │ │ ├── box-algorithms │ │ └── tools │ │ │ ├── ovpCBoxAlgorithmEBMLStreamSpy.cpp │ │ │ ├── ovpCBoxAlgorithmEBMLStreamSpy.h │ │ │ ├── ovpCBoxAlgorithmMatrixValidityChecker.cpp │ │ │ ├── ovpCBoxAlgorithmMatrixValidityChecker.h │ │ │ ├── ovpCBoxAlgorithmStimulationListener.cpp │ │ │ └── ovpCBoxAlgorithmStimulationListener.h │ │ ├── doc │ │ ├── Doc_BoxAlgorithm_EBMLStreamSpy.dox-part │ │ ├── Doc_BoxAlgorithm_MatrixValidityChecker.dox-part │ │ └── Doc_BoxAlgorithm_StimulationListener.dox-part │ │ ├── ovpCBoxAlgorithmLatencyEvaluation.cpp │ │ ├── ovpCBoxAlgorithmLatencyEvaluation.h │ │ ├── ovpCMouseControl.cpp │ │ ├── ovpCMouseControl.h │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp ├── turbofieldtrip │ └── trunc │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── ovp_defines.h │ │ └── ovp_main.cpp └── vrpn │ └── trunc │ ├── CMakeLists.txt │ └── src │ ├── doc │ ├── BoxAlgorithm_AnalogVRPNServer.dox-part │ └── BoxAlgorithm_ButtonVRPNServer.dox-part │ ├── ovpCBoxAlgorithmVRPNAnalogClient.cpp │ ├── ovpCBoxAlgorithmVRPNAnalogClient.h │ ├── ovpCBoxAlgorithmVRPNButtonClient.cpp │ ├── ovpCBoxAlgorithmVRPNButtonClient.h │ ├── ovpCVRPNAnalogServer.cpp │ ├── ovpCVRPNAnalogServer.h │ ├── ovpCVRPNButtonServer.cpp │ ├── ovpCVRPNButtonServer.h │ ├── ovpIVRPNServerManager.cpp │ ├── ovpIVRPNServerManager.h │ ├── ovp_defines.h │ └── ovp_main.cpp ├── openvibe-scenarios └── trunc │ ├── CMakeLists.txt │ └── share │ └── openvibe-scenarios │ ├── bci │ ├── handball │ │ └── handball-replay.xml │ ├── motor-imagery-CSP │ │ ├── csp-spatial-filter.cfg │ │ ├── motor-imagery-bci-0-signal-monitoring.xml │ │ ├── motor-imagery-bci-1-acquisition.xml │ │ ├── motor-imagery-bci-2-train-CSP.xml │ │ ├── motor-imagery-bci-3-classifier-trainer.xml │ │ ├── motor-imagery-bci-4-online.xml │ │ ├── motor-imagery-bci-5-replay.xml │ │ ├── motor-imagery-bci-config-classifier.cfg │ │ ├── motor-imagery-bci-epoch-selector.lua │ │ └── motor-imagery-bci-graz-stimulator.lua │ ├── motor-imagery │ │ ├── motor-imagery-bci-0-signal-monitoring.xml │ │ ├── motor-imagery-bci-1-acquisition.xml │ │ ├── motor-imagery-bci-2-classifier-trainer.xml │ │ ├── motor-imagery-bci-3-online.xml │ │ ├── motor-imagery-bci-4-replay.xml │ │ ├── motor-imagery-bci-config-classifier.cfg │ │ └── motor-imagery-bci-graz-stimulator.lua │ ├── neurofeedback │ │ └── neurofeedback.xml │ ├── p300-magic-card │ │ ├── p300-classifier.cfg │ │ ├── p300-epoch-average.cfg │ │ ├── p300-magic-card-1-acquisition.xml │ │ ├── p300-magic-card-2-train-classifier.xml │ │ ├── p300-magic-card-3-online.xml │ │ └── p300-magic-card-stimulations-targets.lua │ ├── p300-speller-xDAWN │ │ ├── p300-classifier-processor.cfg │ │ ├── p300-classifier.cfg │ │ ├── p300-epoch-average.cfg │ │ ├── p300-spatial-filter.cfg │ │ ├── p300-speller-0-signal-monitoring.xml │ │ ├── p300-speller-1-acquisition.xml │ │ ├── p300-speller-2-train-xDAWN.xml │ │ ├── p300-speller-3-train-classifier.xml │ │ ├── p300-speller-4-online.xml │ │ ├── p300-speller-5-replay.xml │ │ ├── p300-speller-stimulator.cfg │ │ ├── p300-speller-target.lua │ │ └── p300-speller-visualisation.cfg │ ├── p300-speller │ │ ├── p300-classifier-processor.cfg │ │ ├── p300-classifier.cfg │ │ ├── p300-epoch-average.cfg │ │ ├── p300-speller-1-acquisition.xml │ │ ├── p300-speller-2-train-classifier.xml │ │ ├── p300-speller-3-online.xml │ │ ├── p300-speller-stimulator.cfg │ │ ├── p300-speller-target.lua │ │ └── p300-speller-visualisation.cfg │ ├── ssvep │ │ ├── example-experiment-configuration.cfg │ │ ├── example-shooter-configuration.cfg │ │ ├── example-training-configuration.cfg │ │ ├── scripts │ │ │ ├── classifier-training-flipswitch.lua │ │ │ ├── classifier-training-target-separator.lua │ │ │ ├── configuration-experiment-settings.lua │ │ │ ├── configuration-peripheral-settings.lua │ │ │ ├── shooter-button-simplifier.lua │ │ │ ├── shooter-combination-classifier.lua │ │ │ ├── shooter-controller.lua │ │ │ ├── start-stimulator.lua │ │ │ └── training-acquisition-controller.lua │ │ ├── ssvep-bci-0-acquisition-test.xml │ │ ├── ssvep-bci-1-ssvep-configuration.xml │ │ ├── ssvep-bci-2-training-acquisition.xml │ │ ├── ssvep-bci-3-CSP-training.xml │ │ ├── ssvep-bci-4-classifier-training.xml │ │ └── ssvep-bci-5-online-test-shooter.xml │ └── tie-fighter │ │ └── tie-fighter-freetime.xml │ ├── box-tutorials │ ├── channel-selector.xml │ ├── crop.xml │ ├── cue-image.xml │ ├── gdf-reader.xml │ ├── generic-stream-reader.xml │ ├── lua-stimulator.xml │ ├── matlab │ │ ├── tuto1-signal-filter.xml │ │ ├── tuto1_signal_filter_Initialize.m │ │ ├── tuto1_signal_filter_Process.m │ │ ├── tuto1_signal_filter_Uninitialize.m │ │ ├── tuto2-FFT-filter.xml │ │ ├── tuto2_FFT_filter_Initialize.m │ │ ├── tuto2_FFT_filter_Process.m │ │ ├── tuto2_FFT_filter_Uninitialize.m │ │ ├── tuto3-sinus-generator.xml │ │ ├── tuto3_sinus_generator_Initialize.m │ │ ├── tuto3_sinus_generator_Process.m │ │ └── tuto3_sinus_generator_Uninitialize.m │ ├── network-acquisition.xml │ ├── power-spectrum.xml │ ├── python │ │ ├── scenarios │ │ │ ├── python-pygame-multiprocessing.xml │ │ │ └── python-sinus-oscillator.xml │ │ └── scripts │ │ │ ├── python-clock-stimulator.py │ │ │ ├── python-moving-circle.py │ │ │ ├── python-multiprocessing.py │ │ │ ├── python-signal-average.py │ │ │ ├── python-sinus-oscillator-without-numpy.py │ │ │ ├── python-sinus-oscillator.py │ │ │ └── python-star-field.py │ ├── run-command.xml │ ├── sign-change-detector.xml │ ├── signal-display.xml │ ├── simple-dsp.xml │ ├── sound-player.xml │ ├── stream-switch.xml │ ├── time-frequency-map.xml │ ├── topographic-map.xml │ ├── voxel-display-settings-file.txt │ └── voxel-display.xml │ └── signals │ ├── bci-motor-imagery.ov │ ├── bci-p300-magic-card.ov │ ├── bci-p300-speller.ov │ ├── bci-ssvep-training.ov │ ├── neurofeedback.gdf │ ├── real-hand-movements.gdf │ ├── tie-fighter-freetime.gdf │ └── voxel-display.gdf ├── openvibe-toolkit └── trunc │ ├── CMakeLists.txt │ └── src │ ├── doc │ └── doxyfile │ ├── openvibe-toolkit │ ├── algorithms │ │ ├── classification │ │ │ ├── ovtkCAlgorithmClassifier.cpp │ │ │ ├── ovtkCAlgorithmClassifier.h │ │ │ ├── ovtkCAlgorithmClassifierTrainer.cpp │ │ │ ├── ovtkCAlgorithmClassifierTrainer.h │ │ │ ├── ovtkCFeatureVector.hpp │ │ │ ├── ovtkCFeatureVectorSet.cpp │ │ │ ├── ovtkCFeatureVectorSet.hpp │ │ │ └── ovtkCVector.hpp │ │ ├── ovtkTAlgorithm.h │ │ └── scenario-io │ │ │ ├── ovtkCAlgorithmScenarioExporter.cpp │ │ │ ├── ovtkCAlgorithmScenarioExporter.h │ │ │ ├── ovtkCAlgorithmScenarioImporter.cpp │ │ │ ├── ovtkCAlgorithmScenarioImporter.h │ │ │ └── ovtk_scenario_io.h │ ├── box-algorithms │ │ ├── ovtkTBoxAlgorithm.h │ │ └── ovtkTTrainingBoxAlgorithm.h │ ├── codecs │ │ ├── decoders │ │ │ ├── ovtkTAcquisitionDecoder.h │ │ │ ├── ovtkTChannelLocalisationDecoder.h │ │ │ ├── ovtkTDecoder.h │ │ │ ├── ovtkTExperimentInformationDecoder.h │ │ │ ├── ovtkTFeatureVectorDecoder.h │ │ │ ├── ovtkTSignalDecoder.h │ │ │ ├── ovtkTSpectrumDecoder.h │ │ │ ├── ovtkTStimulationStreamDecoder.h │ │ │ └── ovtkTStreamedMatrixDecoder.h │ │ ├── encoders │ │ │ ├── ovtkTChannelLocalisationEncoder.h │ │ │ ├── ovtkTEncoder.h │ │ │ ├── ovtkTExperimentInformationEncoder.h │ │ │ ├── ovtkTFeatureVectorEncoder.h │ │ │ ├── ovtkTSignalEncoder.h │ │ │ ├── ovtkTSpectrumEncoder.h │ │ │ ├── ovtkTStimulationStreamEncoder.h │ │ │ └── ovtkTStreamedMatrixEncoder.h │ │ └── ovtkTCodec.h │ ├── deprecated │ │ ├── reader │ │ │ ├── ovtkIBoxAlgorithmEBMLInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmExperimentInformationInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmExperimentInformationInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmFeatureVectorInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmFeatureVectorInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmSignalInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmSignalInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmSpectrumInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmSpectrumInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmStimulationInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmStimulationInputReaderCallback.h │ │ │ ├── ovtkIBoxAlgorithmStreamedMatrixInputReaderCallback.cpp │ │ │ ├── ovtkIBoxAlgorithmStreamedMatrixInputReaderCallback.h │ │ │ ├── ovtkTBoxAlgorithmEBMLInputReaderCallback.inl │ │ │ ├── ovtkTBoxAlgorithmExperimentInformationInputReaderCallback.inl │ │ │ ├── ovtkTBoxAlgorithmFeatureVectorInputReaderCallback.inl │ │ │ ├── ovtkTBoxAlgorithmSignalInputReaderCallback.inl │ │ │ ├── ovtkTBoxAlgorithmSpectrumInputReaderCallback.inl │ │ │ ├── ovtkTBoxAlgorithmStimulationInputReaderCallback.inl │ │ │ └── ovtkTBoxAlgorithmStreamedMatrixInputReaderCallback.inl │ │ └── writer │ │ │ ├── ovtkCBoxAlgorithmEBMLOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmEBMLOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmEBMLOutputWriterPartBase.cpp │ │ │ ├── ovtkCBoxAlgorithmEBMLOutputWriterPartBase.inl │ │ │ ├── ovtkCBoxAlgorithmExperimentInformationOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmExperimentInformationOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmFeatureVectorOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmFeatureVectorOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmSignalOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmSignalOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmSpectrumOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmSpectrumOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmStimulationOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmStimulationOutputWriterPart.inl │ │ │ ├── ovtkCBoxAlgorithmStreamedMatrixOutputWriterPart.cpp │ │ │ ├── ovtkCBoxAlgorithmStreamedMatrixOutputWriterPart.inl │ │ │ ├── ovtkIBoxAlgorithmEBMLOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmExperimentInformationOutputWriter.cpp │ │ │ ├── ovtkIBoxAlgorithmExperimentInformationOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmFeatureVectorOutputWriter.cpp │ │ │ ├── ovtkIBoxAlgorithmFeatureVectorOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmSignalOutputWriter.cpp │ │ │ ├── ovtkIBoxAlgorithmSignalOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmSpectrumOutputWriter.cpp │ │ │ ├── ovtkIBoxAlgorithmSpectrumOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmStimulationOutputWriter.cpp │ │ │ ├── ovtkIBoxAlgorithmStimulationOutputWriter.h │ │ │ ├── ovtkIBoxAlgorithmStreamedMatrixOutputWriter.cpp │ │ │ └── ovtkIBoxAlgorithmStreamedMatrixOutputWriter.h │ ├── ovtkIFeatureVector.h │ ├── ovtkIFeatureVectorSet.h │ ├── ovtkIObject.h │ ├── ovtkIVector.h │ ├── ovtk_all.h │ ├── ovtk_base.h │ ├── ovtk_defines.h │ ├── tools │ │ ├── ovtkColorGradient.cpp │ │ ├── ovtkColorGradient.h │ │ ├── ovtkMatrix.cpp │ │ ├── ovtkMatrix.h │ │ ├── ovtkStimulationSet.cpp │ │ ├── ovtkStimulationSet.h │ │ ├── ovtkString.cpp │ │ └── ovtkString.h │ └── training │ │ ├── ovtkCSignalTrial.cpp │ │ ├── ovtkCSignalTrial.hpp │ │ ├── ovtkCSignalTrialSet.cpp │ │ ├── ovtkCSignalTrialSet.hpp │ │ ├── ovtkISignalTrial.cpp │ │ ├── ovtkISignalTrial.h │ │ └── ovtkISignalTrialSet.h │ └── ovtk_main.cpp ├── openvibe-website └── trunc │ └── src │ ├── cc-by-sa.png │ ├── flash │ ├── .htaccess │ ├── player.swf │ └── swfobject.js │ ├── index.php │ ├── jobs │ ├── 2009-06-GipsaLab-Grenoble-GAZE_EEG-SoftwareEngineer_PostDoc-en.pdf │ ├── 2009-06-GipsaLab-Grenoble-OpenViBE2-PostDoc-en.pdf │ ├── 2009-06-INRIA-Nancy-Software-Engineer-en.pdf │ ├── 2009-06-INRIA-Nancy-Software-Engineer-fr.pdf │ ├── 2009-06-INRIA-Rennes-PhD-Thesis-en.pdf │ ├── 2009-06-INRIA-Rennes-PhD-Thesis-fr.pdf │ ├── 2009-06-INRIA-Rennes-Software-Engineer-en.pdf │ ├── 2009-06-INRIA-Rennes-Software-Engineer-fr.pdf │ ├── 2010-03-CEA-Leti-Grenoble-Software-Engineer.pdf │ ├── 2010-06-HRP-Garches-Software-Engineer-en.pdf │ └── 2010-12-APHP-Post-Doc.pdf │ ├── leaving.png │ ├── logo.png │ ├── openvibe-precompiled-older.png │ ├── openvibe-precompiled.png │ ├── openvibe-snapshot-acquisition-server-01.png │ ├── openvibe-snapshot-acquisition-server-02.png │ ├── openvibe-snapshot-app-01.png │ ├── openvibe-snapshot-app-02.png │ ├── openvibe-snapshot-app-03.png │ ├── openvibe-snapshot-designer-01.png │ ├── openvibe-snapshot-designer-02.png │ ├── openvibe-snapshot-designer-03.png │ ├── openvibe-snapshot-designer-04.png │ ├── openvibe-snapshot-designer-05.png │ ├── openvibe-snapshot-designer-06.png │ ├── openvibe-snapshot-vr-app-01.png │ ├── openvibe-snapshot-vr-app-02.png │ ├── openvibe-sources-older.png │ ├── openvibe-sources.png │ ├── openvibe-users-cartography.png │ ├── openvibe-video-bci.png │ ├── openvibe-video-demonstrators.png │ ├── openvibe-video-introduction.png │ ├── openvibe-video-training-course-en.png │ ├── openvibe-video-training-course-fr.png │ ├── openvibe-virtualmachine-older.png │ ├── openvibe-virtualmachine.png │ ├── openvibe.js │ ├── package-archive.png │ ├── package-installer.png │ ├── package-virtual-machine.png │ ├── search.php │ ├── style.css │ ├── tick.png │ └── video.php ├── openvibe ├── tags │ └── wip-omk4 │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── CreatingNewPlugins.dox │ │ ├── Groups.dox │ │ ├── Mainpage.dox │ │ ├── Namespaces.dox │ │ ├── doxyfile │ │ ├── doxygen.css │ │ ├── footer.html │ │ ├── logo-small.png │ │ ├── logo.png │ │ └── tabs.css │ │ └── openvibe │ │ ├── kernel │ │ ├── algorithm │ │ │ ├── ovIAlgorithmContext.h │ │ │ ├── ovIAlgorithmManager.h │ │ │ ├── ovIAlgorithmProto.h │ │ │ └── ovIAlgorithmProxy.h │ │ ├── log │ │ │ ├── ovILogListener.h │ │ │ └── ovILogManager.h │ │ ├── ovIConfigurable.h │ │ ├── ovIKernel.h │ │ ├── ovIKernelContext.h │ │ ├── ovIKernelDesc.h │ │ ├── ovIKernelObject.h │ │ ├── ovIKernelObjectFactory.h │ │ ├── ovIObjectVisitorContext.h │ │ ├── ovIParameter.h │ │ ├── ovITypeManager.h │ │ ├── ovTParameterHandler.h │ │ ├── player │ │ │ ├── ovIBoxAlgorithmContext.h │ │ │ ├── ovIMessage.h │ │ │ ├── ovIMessageClock.h │ │ │ ├── ovIMessageEvent.h │ │ │ ├── ovIMessageSignal.h │ │ │ ├── ovIPlayer.h │ │ │ ├── ovIPlayerContext.h │ │ │ └── ovIPlayerManager.h │ │ ├── plugins │ │ │ ├── ovIPluginManager.h │ │ │ ├── ovIPluginModule.h │ │ │ └── ovIPluginModuleContext.h │ │ ├── scenario │ │ │ ├── ovIAttributable.h │ │ │ ├── ovIBox.h │ │ │ ├── ovIBoxIO.h │ │ │ ├── ovIBoxProto.h │ │ │ ├── ovILink.h │ │ │ ├── ovIProcessingUnit.h │ │ │ ├── ovIScenario.h │ │ │ ├── ovIScenarioExporterContext.h │ │ │ ├── ovIScenarioImporterContext.h │ │ │ └── ovIScenarioManager.h │ │ └── visualisation │ │ │ ├── ovIVisualisationContext.h │ │ │ ├── ovIVisualisationManager.h │ │ │ ├── ovIVisualisationTree.h │ │ │ ├── ovIVisualisationWidget.h │ │ │ └── ovIWindowManager.h │ │ ├── ovCIdentifier.cpp │ │ ├── ovCIdentifier.h │ │ ├── ovCMatrix.cpp │ │ ├── ovCMatrix.h │ │ ├── ovCMemoryBuffer.cpp │ │ ├── ovCMemoryBuffer.h │ │ ├── ovCStimulationSet.cpp │ │ ├── ovCStimulationSet.h │ │ ├── ovCString.cpp │ │ ├── ovCString.h │ │ ├── ovIKernelLoader.cpp │ │ ├── ovIKernelLoader.h │ │ ├── ovIMatrix.h │ │ ├── ovIMemoryBuffer.h │ │ ├── ovIObject.h │ │ ├── ovIObjectVisitor.h │ │ ├── ovIStimulationSet.h │ │ ├── ov_all.h │ │ ├── ov_base.h │ │ ├── ov_defines.h │ │ ├── ov_main.cpp │ │ ├── ov_notes.h │ │ ├── ov_types.h │ │ └── plugins │ │ ├── ovIAlgorithm.h │ │ ├── ovIAlgorithmDesc.h │ │ ├── ovIBoxAlgorithm.h │ │ ├── ovIBoxAlgorithmDesc.h │ │ ├── ovIPluginObject.h │ │ ├── ovIPluginObjectDesc.h │ │ ├── ovIScenarioExporter.h │ │ ├── ovIScenarioExporterDesc.h │ │ ├── ovIScenarioImporter.h │ │ └── ovIScenarioImporterDesc.h └── trunc │ ├── CMakeLists.txt │ └── src │ ├── doc │ ├── CreatingNewPlugins.dox │ ├── Doc_SoftwareArchitectureOverview_SoftwareComponents.png │ ├── Doc_SoftwareArchitectureOverview_SoftwareComponents_2.png │ ├── Groups.dox │ ├── Namespaces.dox │ ├── SoftwareArchitectureOverview.dox │ ├── VisualisationContext.dox │ └── VisualisationManager.dox │ └── openvibe │ ├── kernel │ ├── algorithm │ │ ├── ovIAlgorithmContext.h │ │ ├── ovIAlgorithmManager.h │ │ ├── ovIAlgorithmProto.h │ │ └── ovIAlgorithmProxy.h │ ├── configuration │ │ └── ovIConfigurationManager.h │ ├── log │ │ ├── ovILogListener.h │ │ └── ovILogManager.h │ ├── ovIConfigurable.h │ ├── ovIKernelContext.h │ ├── ovIKernelDesc.h │ ├── ovIKernelObject.h │ ├── ovIKernelObjectFactory.h │ ├── ovIObjectVisitorContext.h │ ├── ovIParameter.h │ ├── ovITypeManager.h │ ├── ovTParameterHandler.h │ ├── player │ │ ├── ovIBoxAlgorithmContext.h │ │ ├── ovIMessage.h │ │ ├── ovIMessageClock.h │ │ ├── ovIMessageEvent.h │ │ ├── ovIMessageSignal.h │ │ ├── ovIPlayer.h │ │ ├── ovIPlayerContext.h │ │ └── ovIPlayerManager.h │ ├── plugins │ │ ├── ovIPluginManager.h │ │ ├── ovIPluginModule.h │ │ └── ovIPluginModuleContext.h │ ├── scenario │ │ ├── ovIAttributable.h │ │ ├── ovIBox.h │ │ ├── ovIBoxIO.h │ │ ├── ovIBoxListenerContext.h │ │ ├── ovIBoxProto.h │ │ ├── ovIComment.h │ │ ├── ovILink.h │ │ ├── ovIProcessingUnit.h │ │ ├── ovIScenario.h │ │ ├── ovIScenarioExporterContext.h │ │ ├── ovIScenarioImporterContext.h │ │ └── ovIScenarioManager.h │ └── visualisation │ │ ├── ovIVisualisationContext.h │ │ ├── ovIVisualisationManager.h │ │ ├── ovIVisualisationTree.h │ │ └── ovIVisualisationWidget.h │ ├── ovCIdentifier.cpp │ ├── ovCIdentifier.h │ ├── ovCKernelLoader.cpp │ ├── ovCKernelLoader.h │ ├── ovCMatrix.cpp │ ├── ovCMatrix.h │ ├── ovCMemoryBuffer.cpp │ ├── ovCMemoryBuffer.h │ ├── ovCNameValuePairList.cpp │ ├── ovCNameValuePairList.h │ ├── ovCStimulationSet.cpp │ ├── ovCStimulationSet.h │ ├── ovCString.cpp │ ├── ovCString.h │ ├── ovIKernelLoader.h │ ├── ovIMatrix.h │ ├── ovIMemoryBuffer.h │ ├── ovIObject.h │ ├── ovIObjectVisitor.h │ ├── ovIStimulationSet.h │ ├── ov_all.h │ ├── ov_base.h │ ├── ov_defines.h │ ├── ov_main.cpp │ ├── ov_notes.h │ ├── ov_types.h │ └── plugins │ ├── ovIAlgorithm.h │ ├── ovIAlgorithmDesc.h │ ├── ovIBoxAlgorithm.h │ ├── ovIBoxAlgorithmDesc.h │ ├── ovIPluginObject.h │ ├── ovIPluginObjectDesc.h │ ├── ovIScenarioExporter.h │ ├── ovIScenarioExporterDesc.h │ ├── ovIScenarioImporter.h │ └── ovIScenarioImporterDesc.h └── scripts ├── linux-algorithm-wizard ├── linux-box-algorithm-wizard ├── linux-build ├── linux-clean ├── linux-count_lines ├── linux-create_tag ├── linux-init_env_command-skeleton ├── linux-install_dependencies ├── linux-test ├── new-project-template.tar.bz2 ├── win32-build.cmd ├── win32-clean.cmd ├── win32-generate-vc-proj.cmd ├── win32-init_env_command.cmd-skeleton ├── win32-install_dependencies.exe ├── win32-install_dependencies.nsi └── win32-openvibe-x.x.x-setup.nsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/README -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBE.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleAutomaton.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleAutomaton.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleEBML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleEBML.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleFS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleFS.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleSocket.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleSocket.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleStream.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleStream.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleSystem.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEModuleXML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEModuleXML.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEPluginsGlobalDefines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEPluginsGlobalDefines.cmake -------------------------------------------------------------------------------- /cmake-modules/FindOpenViBEToolkit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindOpenViBEToolkit.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyBLiFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyBLiFF.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyBoost.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyBoost_Regex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyBoost_Regex.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyBoost_Thread.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyBoost_Thread.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyCEGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyCEGUI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyEmokit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyEmokit.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyEmotivAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyEmotivAPI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyExpat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyExpat.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyGMobiLabPlusAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyGMobiLabPlusAPI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyGSL.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyGTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyGTK.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyGUSBampCAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyGUSBampCAPI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyITPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyITPP.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyLibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyLibusb-1.0.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyLua.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyMatlab.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyMatlab.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyMcrypt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyMcrypt.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyOgre3D.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyOgre3D.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyOpenAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyOpenAL.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyPkgConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyPkgConfig.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyPython.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyThinkGearAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyThinkGearAPI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyTorch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyTorch.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyUSBFirstAmpAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyUSBFirstAmpAPI.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyVRPN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyVRPN.cmake -------------------------------------------------------------------------------- /cmake-modules/FindThirdPartyX11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/FindThirdPartyX11.cmake -------------------------------------------------------------------------------- /cmake-modules/ovp_global_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/cmake-modules/ovp_global_defines.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-emaby/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-emaby/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-emaby/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-gtec-multiamp/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-gtec-multiamp/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-gtec-multiamp/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-fieldtrip/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-fieldtrip/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-fieldtrip/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-gtec-event-channel/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-gtec-event-channel/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-gtec-event-channel/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-software-tagging/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-software-tagging/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-jlegeny-software-tagging/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-lbonnet-micromed/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-lbonnet-micromed/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/branches/wip-lbonnet-micromed/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/bin/MitsarDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/bin/MitsarDll.dll -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/bin/NeXusDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/bin/NeXusDLL.dll -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/bin/RTInst.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/bin/RTInst.dll -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/bin/dllMicromed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/bin/dllMicromed.dll -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/share/openvibe-applications/acquisition-server/scripts/egi-default-start.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/share/openvibe-applications/acquisition-server/scripts/egi-default-stop.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/share/openvibe-applications/acquisition-server/scripts/egi-default-uninitialize.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovasCHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovasCHeader.cpp -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovasCHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovasCHeader.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovasIDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovasIDriver.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovasIHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovasIHeader.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovas_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovas_base.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovas_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovas_defines.h -------------------------------------------------------------------------------- /openvibe-applications/acquisition-server/trunc/src/ovas_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/acquisition-server/trunc/src/ovas_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCBoxProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCBoxProxy.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCBoxProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCBoxProxy.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCConnectorEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCConnectorEditor.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCInputDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCInputDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCInputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCInputDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCLinkProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCLinkProxy.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCLinkProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCLinkProxy.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCSettingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCSettingEditor.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovdCSettingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovdCSettingEditor.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovd_base.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovd_defines.h -------------------------------------------------------------------------------- /openvibe-applications/designer/tags/wip-omk4/src/ovd_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/tags/wip-omk4/src/ovd_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCAboutPluginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCAboutPluginDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCAboutPluginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCAboutPluginDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCAboutScenarioDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCAboutScenarioDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCAboutScenarioDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCAboutScenarioDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCApplication.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCApplication.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCBoxConfigurationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCBoxConfigurationDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCBoxProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCBoxProxy.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCBoxProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCBoxProxy.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCCommentEditorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCCommentEditorDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCCommentEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCCommentEditorDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCCommentProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCCommentProxy.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCCommentProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCCommentProxy.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCConnectorEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCConnectorEditor.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCConnectorEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCConnectorEditor.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCDesignerVisualisation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCDesignerVisualisation.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCDesignerVisualisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCDesignerVisualisation.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInputDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInputDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInputDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInputDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInterfacedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInterfacedObject.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInterfacedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInterfacedObject.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInterfacedScenario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInterfacedScenario.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCInterfacedScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCInterfacedScenario.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCLinkProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCLinkProxy.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCLinkProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCLinkProxy.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCLogListenerDesigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCLogListenerDesigner.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCLogListenerDesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCLogListenerDesigner.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCPlayerVisualisation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCPlayerVisualisation.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCPlayerVisualisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCPlayerVisualisation.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCRenameDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCRenameDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCRenameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCRenameDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCScenarioStateStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCScenarioStateStack.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCScenarioStateStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCScenarioStateStack.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCSettingCollectionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCSettingCollectionHelper.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCSettingEditorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCSettingEditorDialog.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdCSettingEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdCSettingEditorDialog.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdTAttributeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdTAttributeHandler.cpp -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovdTAttributeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovdTAttributeHandler.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovd_base.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovd_defines.h -------------------------------------------------------------------------------- /openvibe-applications/designer/trunc/src/ovd_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/designer/trunc/src/ovd_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/id-generator/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/id-generator/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/id-generator/trunc/src/ovig_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/id-generator/trunc/src/ovig_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/plugin-inspector/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/plugin-inspector/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/plugin-inspector/trunc/src/ovpi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/plugin-inspector/trunc/src/ovpi_base.h -------------------------------------------------------------------------------- /openvibe-applications/plugin-inspector/trunc/src/ovpi_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/plugin-inspector/trunc/src/ovpi_defines.h -------------------------------------------------------------------------------- /openvibe-applications/plugin-inspector/trunc/src/ovpi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/plugin-inspector/trunc/src/ovpi_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/skeleton-generator/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/skeleton-generator/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/skeleton-generator/trunc/src/ovsg_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/skeleton-generator/trunc/src/ovsg_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/share/openvibe-applications/ssvep-demo/shooter.conf: -------------------------------------------------------------------------------- 1 | SSVEP_ApplicationType = shooter 2 | -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/share/openvibe-ssvep-demo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/share/openvibe-ssvep-demo.conf -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/Shooter/ovassvepCStarShip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/Shooter/ovassvepCStarShip.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCApplication.cpp -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCApplication.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCBasicPainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCBasicPainter.cpp -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCBasicPainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCBasicPainter.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCCommandStartStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCCommandStartStop.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCPainter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCPainter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCStimulator.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCStimulator.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCVRPNServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCVRPNServer.cpp -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepCVRPNServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepCVRPNServer.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepICommand.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepICommandOIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepICommandOIS.cpp -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvepICommandOIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvepICommandOIS.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvep_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvep_defines.h -------------------------------------------------------------------------------- /openvibe-applications/ssvep-demo/trunc/src/ovassvep_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/ssvep-demo/trunc/src/ovassvep_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/bin/OpenViBE-vr-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/bin/OpenViBE-vr-demo -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ovaCAbstractVrpnPeripheral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ovaCAbstractVrpnPeripheral.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ovaCAbstractVrpnPeripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ovaCAbstractVrpnPeripheral.h -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ova_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ova_defines.h -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ovavrdCOgreVRApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ovavrdCOgreVRApplication.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ovavrdCOgreVRApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ovavrdCOgreVRApplication.h -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/src/ovavrd_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/src/ovavrd_main.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaC3DEntityManipulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaC3DEntityManipulator.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaC3DEntityManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaC3DEntityManipulator.h -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaCManipulable3DEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaCManipulable3DEntity.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaCManipulable3DEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaCManipulable3DEntity.h -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaCNeurofeedbackSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaCNeurofeedbackSwitch.cpp -------------------------------------------------------------------------------- /openvibe-applications/vr-demo/trunc/test/ovaCNeurofeedbackSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vr-demo/trunc/test/ovaCNeurofeedbackSwitch.h -------------------------------------------------------------------------------- /openvibe-applications/vrpn-simulator/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vrpn-simulator/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-applications/vrpn-simulator/trunc/src/ova_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-applications/vrpn-simulator/trunc/src/ova_main.cpp -------------------------------------------------------------------------------- /openvibe-documentation/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/cc-by-sa.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/developers/installation/install.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/developers/installation/install.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/developers/tools/id-generator.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/developers/tools/id-generator.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/developers/tools/id-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/developers/tools/id-generator.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/developers/tools/sk-gen-driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/developers/tools/sk-gen-driver.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/developers/tools/sk-gen-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/developers/tools/sk-gen-init.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/doxyfile-skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/doxyfile-skeleton -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/doxygen.css -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/doxygen.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/faq.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/footer.html -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/header.html -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/leaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/leaving.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/licence.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/licence.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/linux.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/linux.svg.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/logo.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/none.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/none.svg.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/openvibe.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/openvibe.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/search.php -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/tabs.css -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/tick.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/designer/overview/designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/designer/overview/designer.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/ExistingScenarios.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/ExistingScenarios.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/handball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/handball.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/motor-imagery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/motor-imagery.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/neurofeedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/neurofeedback.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/p300-magic-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/p300-magic-card.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/p300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/p300.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/ssvep/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/ssvep/training.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/users/scenarios/tie-fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/users/scenarios/tie-fighter.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/windows.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/windows.svg.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/wip/BoxAlgorithmConnectorTypes.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/wip/BoxAlgorithmConnectorTypes.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/wip/DataVisualisation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/wip/DataVisualisation.dox -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/wip/boxalgorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/wip/boxalgorithm.png -------------------------------------------------------------------------------- /openvibe-documentation/trunc/src/wip/boxalgorithm_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-documentation/trunc/src/wip/boxalgorithm_settings.png -------------------------------------------------------------------------------- /openvibe-externals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-externals/README -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/FindThirdPartyOgre3D.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/FindThirdPartyOgre3D.cmake -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_base.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_defines.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_main.cpp -------------------------------------------------------------------------------- /openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/tags/wip-omk4/src/openvibe-kernel/ovk_tools.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-delayed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-delayed.conf -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/OgreCore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/OgreCore.zip -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/cone_ov.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/cone_ov.material -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/cone_ov.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/cone_ov.mesh -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/ogre.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/ogre.cfg -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/resources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/resources.cfg -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/sphere_ov.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/sphere_ov.material -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/sphere_ov.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe-kernel-omk/sphere_ov.mesh -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/share/openvibe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/share/openvibe.conf -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkCParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkCParameter.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkCTypeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkCTypeManager.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkGtkOVCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkGtkOVCustom.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkTParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/kernel/ovkTParameter.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_base.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_defines.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_main.cpp -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/ovk_tools.h -------------------------------------------------------------------------------- /openvibe-kernel-omk/trunc/src/openvibe-kernel/tools/ovkCScopeTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-kernel-omk/trunc/src/openvibe-kernel/tools/ovkCScopeTester.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/CIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/CIdentifier.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/CIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/CIdentifier.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IAutomatonContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IAutomatonContext.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IAutomatonContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IAutomatonContext.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IAutomatonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IAutomatonController.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/INode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/INode.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/INodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/INodeFactory.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/INodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/INodeFactory.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IXMLAutomatonReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IXMLAutomatonReader.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IXMLAutomatonReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IXMLAutomatonReader.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IXMLNodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IXMLNodeReader.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/IXMLNodeReaderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/IXMLNodeReaderFactory.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/TXMLReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/TXMLReader.hpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/defines.h -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeAction.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeAction.hpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeLoop.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeLoop.hpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeSwitch.cpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/CNodeSwitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/CNodeSwitch.hpp -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/TNode.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/TNode.inl -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/automaton/node/TNodeLoop.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/automaton/node/TNodeLoop.inl -------------------------------------------------------------------------------- /openvibe-modules/automaton/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/automaton/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/share/matroska_ebml_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/share/matroska_ebml_syntax.txt -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/FormatingEBMLStreams.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/FormatingEBMLStreams.dox -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/MainPage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/MainPage.dox -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/Namespaces.dox -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ParsingEBMLStreams.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ParsingEBMLStreams.dox -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/WhatIsEBML.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/WhatIsEBML.dox -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_formating_class.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_formating_class.dia -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_formating_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_formating_class.png -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_formating_concept.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_formating_concept.dia -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_formating_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_formating_concept.png -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_parsing_class.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_parsing_class.dia -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_parsing_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_parsing_class.png -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_parsing_concept.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_parsing_concept.dia -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/doc/ebml_parsing_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/doc/ebml_parsing_concept.png -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CIdentifier.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CIdentifier.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CReader.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CReader.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CReaderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CReaderHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CReaderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CReaderHelper.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CWriter.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CWriter.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CWriterHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CWriterHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/CWriterHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/CWriterHelper.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IReader.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IReader.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IReaderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IReaderHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IReaderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IReaderHelper.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IWriter.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IWriter.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IWriterHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IWriterHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/IWriterHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/IWriterHelper.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/TReaderCallbackProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/TReaderCallbackProxy.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/TWriterCallbackProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/TWriterCallbackProxy.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/ebml/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/ebml/defines.h -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/test/test_ebml_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/test/test_ebml_read.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/test/test_ebml_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/test/test_ebml_tree.cpp -------------------------------------------------------------------------------- /openvibe-modules/ebml/trunc/test/test_ebml_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/ebml/trunc/test/test_ebml_write.cpp -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/fs/Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/fs/Files.cpp -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/fs/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/fs/Files.h -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/fs/IEntryEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/fs/IEntryEnumerator.cpp -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/fs/IEntryEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/fs/IEntryEnumerator.h -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/fs/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/fs/defines.h -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/fs/trunc/test/test_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/fs/trunc/test/test_fs.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnection.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnection.h -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnection.inl -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnectionClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnectionClient.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnectionClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnectionClient.h -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnectionServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnectionServer.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/IConnectionServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/IConnectionServer.h -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/src/socket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/src/socket/defines.h -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/test/test_socket_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/test/test_socket_client.cpp -------------------------------------------------------------------------------- /openvibe-modules/socket/trunc/test/test_socket_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/socket/trunc/test/test_socket_server.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamBase.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamBase.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamFile.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamFile.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamHelper.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamMemory.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/CInputStreamMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/CInputStreamMemory.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamBase.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamBase.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamFile.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamFile.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamHelper.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamHelper.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamMemory.cpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/COutputStreamMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/COutputStreamMemory.hpp -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/IInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/IInputStream.h -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/IInputStreamHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/IInputStreamHelper.h -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/IOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/IOutputStream.h -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/IOutputStreamHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/IOutputStreamHelper.h -------------------------------------------------------------------------------- /openvibe-modules/stream/trunc/src/stream/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/stream/trunc/src/stream/defines.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/CChrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/CChrono.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/CChrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/CChrono.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Math.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Math.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Memory.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Memory.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Time.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/Time.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/src/system/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/src/system/defines.h -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/test/test_endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/test/test_endian.cpp -------------------------------------------------------------------------------- /openvibe-modules/system/trunc/test/test_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/system/trunc/test/test_time.cpp -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/main.cpp -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/IReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/IReader.cpp -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/IReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/IReader.h -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/IWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/IWriter.cpp -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/IWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/IWriter.h -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/TReaderCallbackProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/TReaderCallbackProxy.h -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/TWriterCallbackProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/TWriterCallbackProxy.h -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/src/xml/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/src/xml/defines.h -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/test/test_xml_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/test/test_xml_read.cpp -------------------------------------------------------------------------------- /openvibe-modules/xml/trunc/test/test_xml_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-modules/xml/trunc/test/test_xml_write.cpp -------------------------------------------------------------------------------- /openvibe-plugins/acquisition/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/acquisition/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/acquisition/trunc/src/ovpCGenericNetworkAcquisition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/acquisition/trunc/src/ovpCGenericNetworkAcquisition.h -------------------------------------------------------------------------------- /openvibe-plugins/acquisition/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/acquisition/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/acquisition/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/acquisition/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/classification-gpl/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification-gpl/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/classification-gpl/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification-gpl/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/classification-gpl/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification-gpl/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/src/doc/ovpCLDAClassifier.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/src/doc/ovpCLDAClassifier.dox -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/src/ovpCLDAClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/src/ovpCLDAClassifier.cpp -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/src/ovpCLDAClassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/src/ovpCLDAClassifier.h -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/classification/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/classification/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/feature-extraction/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/feature-extraction/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/feature-extraction/trunc/src/ovpCFeatureAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/feature-extraction/trunc/src/ovpCFeatureAggregator.h -------------------------------------------------------------------------------- /openvibe-plugins/feature-extraction/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/feature-extraction/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/feature-extraction/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/feature-extraction/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCBCICompetitionIIIbReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCBCICompetitionIIIbReader.cpp -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCBCICompetitionIIIbReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCBCICompetitionIIIbReader.h -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCGDFFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCGDFFileReader.cpp -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCGDFFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCGDFFileReader.h -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCGDFFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCGDFFileWriter.cpp -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovpCGDFFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovpCGDFFileWriter.h -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovp_gdf_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovp_gdf_helpers.cpp -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovp_gdf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovp_gdf_helpers.h -------------------------------------------------------------------------------- /openvibe-plugins/file-io/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/file-io/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/matlab/branches/wip-lbonnet-matlabdll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/branches/wip-lbonnet-matlabdll/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/doc/matlab_run_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/doc/matlab_run_full.png -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/doc/matlab_scenar_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/doc/matlab_scenar_config.png -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabFilter.cpp -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabFilter.h -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabScripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabScripting.cpp -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCBoxAlgorithmMatlabScripting.h -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCMatlabHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCMatlabHelper.cpp -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovpCMatlabHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovpCMatlabHelper.h -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/matlab/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/matlab/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/python/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/python/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/python/trunc/src/ovpCBoxAlgorithmPython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/python/trunc/src/ovpCBoxAlgorithmPython.cpp -------------------------------------------------------------------------------- /openvibe-plugins/python/trunc/src/ovpCBoxAlgorithmPython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/python/trunc/src/ovpCBoxAlgorithmPython.h -------------------------------------------------------------------------------- /openvibe-plugins/python/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/python/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/python/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/python/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/algorithms/ovpCAlgorithmAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/algorithms/ovpCAlgorithmAddition.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/doc/sinussignalgenerator_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/doc/sinussignalgenerator_online.png -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmAdditionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmAdditionTest.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmAdditionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmAdditionTest.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClock.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClock.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClockStimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClockStimulator.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClockStimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmClockStimulator.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmMeanVariance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmMeanVariance.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmMeanVariance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmMeanVariance.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmNothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmNothing.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmNothing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCBoxAlgorithmNothing.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCCrashingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCCrashingBox.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCIdentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCIdentity.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCIdentity.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCLog.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCLog.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioExporterSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioExporterSVG.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioExporterSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioExporterSVG.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioExporterXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioExporterXML.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioExporterXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioExporterXML.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioImporterXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioImporterXML.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCScenarioImporterXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCScenarioImporterXML.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCSinusSignalGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCSinusSignalGenerator.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCSinusSignalGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCSinusSignalGenerator.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTest.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTest.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTestCodecToolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTestCodecToolkit.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTestCodecToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTestCodecToolkit.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTimeSignalGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTimeSignalGenerator.cpp -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovpCTimeSignalGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovpCTimeSignalGenerator.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/samples/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/samples/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/doc/csp_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/doc/csp_training.png -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/ovpCFastICA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/ovpCFastICA.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/ovpCFastICA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/ovpCFastICA.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/ovpCTemporalFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/ovpCTemporalFilter.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing-gpl/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing-gpl/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCChannelSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCChannelSelector.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCChannelSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCChannelSelector.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCEpoching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCEpoching.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCEpoching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCEpoching.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCReferenceChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCReferenceChannel.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCReferenceChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCReferenceChannel.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSignalAverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSignalAverage.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSignalAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSignalAverage.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSignalConcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSignalConcat.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSignalConcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSignalConcat.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSimpleDSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSimpleDSP.cpp -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCSimpleDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCSimpleDSP.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovpCTimeBasedEpoching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovpCTimeBasedEpoching.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/signal-processing/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/signal-processing/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/algorithms/linpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/algorithms/linpack.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCBufferDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCBufferDatabase.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCSignalDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCSignalDisplay.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCTimeRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCTimeRuler.cpp -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCTimeRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCTimeRuler.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCVoxelDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCVoxelDisplay.cpp -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpCVoxelDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpCVoxelDisplay.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovpIStreamDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovpIStreamDatabase.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/simple-visualisation/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/simple-visualisation/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovpCKeyboardStimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovpCKeyboardStimulator.cpp -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovpCKeyboardStimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovpCKeyboardStimulator.h -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovpCSignChangeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovpCSignChangeDetector.cpp -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovpCSignChangeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovpCSignChangeDetector.h -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/stimulation/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stimulation/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/stream-codecs/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stream-codecs/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/stream-codecs/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stream-codecs/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/stream-codecs/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/stream-codecs/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/streaming/branches/wip-emaby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/branches/wip-emaby/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/streaming/branches/wip-emaby/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/branches/wip-emaby/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/streaming/branches/wip-emaby/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/branches/wip-emaby/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/streaming/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/streaming/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/streaming/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/streaming/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/src/ovpCBoxAlgorithmLatencyEvaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/src/ovpCBoxAlgorithmLatencyEvaluation.h -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/src/ovpCMouseControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/src/ovpCMouseControl.cpp -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/src/ovpCMouseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/src/ovpCMouseControl.h -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/tools/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/tools/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/turbofieldtrip/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/turbofieldtrip/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/turbofieldtrip/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/turbofieldtrip/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/turbofieldtrip/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/turbofieldtrip/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNAnalogClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNAnalogClient.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNAnalogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNAnalogClient.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNButtonClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNButtonClient.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNButtonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCBoxAlgorithmVRPNButtonClient.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCVRPNAnalogServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCVRPNAnalogServer.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCVRPNAnalogServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCVRPNAnalogServer.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCVRPNButtonServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCVRPNButtonServer.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpCVRPNButtonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpCVRPNButtonServer.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpIVRPNServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpIVRPNServerManager.cpp -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovpIVRPNServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovpIVRPNServerManager.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovp_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovp_defines.h -------------------------------------------------------------------------------- /openvibe-plugins/vrpn/trunc/src/ovp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-plugins/vrpn/trunc/src/ovp_main.cpp -------------------------------------------------------------------------------- /openvibe-scenarios/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-scenarios/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/codecs/ovtkTCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/codecs/ovtkTCodec.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIFeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIFeatureVector.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIFeatureVectorSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIFeatureVectorSet.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIObject.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtkIVector.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_all.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_base.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/ovtk_defines.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkMatrix.cpp -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkMatrix.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkString.cpp -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/openvibe-toolkit/tools/ovtkString.h -------------------------------------------------------------------------------- /openvibe-toolkit/trunc/src/ovtk_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-toolkit/trunc/src/ovtk_main.cpp -------------------------------------------------------------------------------- /openvibe-website/trunc/src/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/cc-by-sa.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/flash/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /openvibe-website/trunc/src/flash/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/flash/player.swf -------------------------------------------------------------------------------- /openvibe-website/trunc/src/flash/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/flash/swfobject.js -------------------------------------------------------------------------------- /openvibe-website/trunc/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/index.php -------------------------------------------------------------------------------- /openvibe-website/trunc/src/jobs/2010-12-APHP-Post-Doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/jobs/2010-12-APHP-Post-Doc.pdf -------------------------------------------------------------------------------- /openvibe-website/trunc/src/leaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/leaving.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/logo.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-precompiled-older.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-precompiled-older.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-precompiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-precompiled.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-app-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-app-01.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-app-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-app-02.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-app-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-app-03.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-01.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-02.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-03.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-04.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-05.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-designer-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-designer-06.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-vr-app-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-vr-app-01.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-snapshot-vr-app-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-snapshot-vr-app-02.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-sources-older.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-sources-older.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-sources.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-users-cartography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-users-cartography.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-video-bci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-video-bci.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-video-demonstrators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-video-demonstrators.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-video-introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-video-introduction.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-video-training-course-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-video-training-course-en.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-video-training-course-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-video-training-course-fr.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-virtualmachine-older.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-virtualmachine-older.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe-virtualmachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe-virtualmachine.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/openvibe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/openvibe.js -------------------------------------------------------------------------------- /openvibe-website/trunc/src/package-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/package-archive.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/package-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/package-installer.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/package-virtual-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/package-virtual-machine.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/search.php -------------------------------------------------------------------------------- /openvibe-website/trunc/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/style.css -------------------------------------------------------------------------------- /openvibe-website/trunc/src/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/tick.png -------------------------------------------------------------------------------- /openvibe-website/trunc/src/video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe-website/trunc/src/video.php -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/CreatingNewPlugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/CreatingNewPlugins.dox -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/Groups.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/Groups.dox -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/Mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/Mainpage.dox -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/Namespaces.dox -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/doxyfile -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/doxygen.css -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/footer.html -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/logo-small.png -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/logo.png -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/doc/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/doc/tabs.css -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/log/ovILogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/log/ovILogListener.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/log/ovILogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/log/ovILogManager.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIConfigurable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIConfigurable.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernel.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelContext.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelDesc.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelObject.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIKernelObjectFactory.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIObjectVisitorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIObjectVisitorContext.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovIParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovIParameter.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovITypeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovITypeManager.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/ovTParameterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/ovTParameterHandler.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessage.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageClock.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageEvent.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIMessageSignal.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayer.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayerContext.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/player/ovIPlayerManager.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/plugins/ovIPluginModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/plugins/ovIPluginModule.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBox.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBoxIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBoxIO.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBoxProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIBoxProto.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovILink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovILink.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/kernel/scenario/ovIScenario.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCIdentifier.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCIdentifier.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCMatrix.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCMatrix.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCMemoryBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCMemoryBuffer.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCMemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCMemoryBuffer.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCStimulationSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCStimulationSet.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCStimulationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCStimulationSet.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCString.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovCString.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIKernelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIKernelLoader.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIKernelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIKernelLoader.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIMatrix.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIMemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIMemoryBuffer.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIObject.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIObjectVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIObjectVisitor.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ovIStimulationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ovIStimulationSet.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_all.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_base.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_defines.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_main.cpp -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_notes.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/ov_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/ov_types.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIAlgorithm.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIAlgorithmDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIAlgorithmDesc.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIBoxAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIBoxAlgorithm.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIBoxAlgorithmDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIBoxAlgorithmDesc.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIPluginObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIPluginObject.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIPluginObjectDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIPluginObjectDesc.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIScenarioExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIScenarioExporter.h -------------------------------------------------------------------------------- /openvibe/tags/wip-omk4/src/openvibe/plugins/ovIScenarioImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/tags/wip-omk4/src/openvibe/plugins/ovIScenarioImporter.h -------------------------------------------------------------------------------- /openvibe/trunc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/CMakeLists.txt -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/CreatingNewPlugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/CreatingNewPlugins.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/Groups.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/Groups.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/Namespaces.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/SoftwareArchitectureOverview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/SoftwareArchitectureOverview.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/VisualisationContext.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/VisualisationContext.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/doc/VisualisationManager.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/doc/VisualisationManager.dox -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmProto.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/algorithm/ovIAlgorithmProxy.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/log/ovILogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/log/ovILogListener.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/log/ovILogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/log/ovILogManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIConfigurable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIConfigurable.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIKernelContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIKernelContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIKernelDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIKernelDesc.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIKernelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIKernelObject.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIKernelObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIKernelObjectFactory.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIObjectVisitorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIObjectVisitorContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovIParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovIParameter.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovITypeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovITypeManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/ovTParameterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/ovTParameterHandler.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIBoxAlgorithmContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIBoxAlgorithmContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIMessage.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIMessageClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIMessageClock.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIMessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIMessageEvent.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIMessageSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIMessageSignal.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIPlayer.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIPlayerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIPlayerContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/player/ovIPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/player/ovIPlayerManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginModule.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/plugins/ovIPluginModuleContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIAttributable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIAttributable.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIBox.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxIO.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxListenerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxListenerContext.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIBoxProto.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIComment.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovILink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovILink.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIProcessingUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIProcessingUnit.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIScenario.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/kernel/scenario/ovIScenarioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/kernel/scenario/ovIScenarioManager.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCIdentifier.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCIdentifier.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCKernelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCKernelLoader.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCKernelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCKernelLoader.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCMatrix.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCMatrix.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCMemoryBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCMemoryBuffer.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCMemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCMemoryBuffer.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCNameValuePairList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCNameValuePairList.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCNameValuePairList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCNameValuePairList.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCStimulationSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCStimulationSet.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCStimulationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCStimulationSet.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCString.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovCString.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIKernelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIKernelLoader.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIMatrix.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIMemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIMemoryBuffer.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIObject.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIObjectVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIObjectVisitor.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ovIStimulationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ovIStimulationSet.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_all.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_base.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_defines.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_main.cpp -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_notes.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/ov_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/ov_types.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIAlgorithm.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIAlgorithmDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIAlgorithmDesc.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIBoxAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIBoxAlgorithm.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIBoxAlgorithmDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIBoxAlgorithmDesc.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIPluginObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIPluginObject.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIPluginObjectDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIPluginObjectDesc.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIScenarioExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIScenarioExporter.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIScenarioExporterDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIScenarioExporterDesc.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIScenarioImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIScenarioImporter.h -------------------------------------------------------------------------------- /openvibe/trunc/src/openvibe/plugins/ovIScenarioImporterDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/openvibe/trunc/src/openvibe/plugins/ovIScenarioImporterDesc.h -------------------------------------------------------------------------------- /scripts/linux-algorithm-wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-algorithm-wizard -------------------------------------------------------------------------------- /scripts/linux-box-algorithm-wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-box-algorithm-wizard -------------------------------------------------------------------------------- /scripts/linux-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-build -------------------------------------------------------------------------------- /scripts/linux-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-clean -------------------------------------------------------------------------------- /scripts/linux-count_lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-count_lines -------------------------------------------------------------------------------- /scripts/linux-create_tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-create_tag -------------------------------------------------------------------------------- /scripts/linux-init_env_command-skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-init_env_command-skeleton -------------------------------------------------------------------------------- /scripts/linux-install_dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-install_dependencies -------------------------------------------------------------------------------- /scripts/linux-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/linux-test -------------------------------------------------------------------------------- /scripts/new-project-template.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/new-project-template.tar.bz2 -------------------------------------------------------------------------------- /scripts/win32-build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-build.cmd -------------------------------------------------------------------------------- /scripts/win32-clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-clean.cmd -------------------------------------------------------------------------------- /scripts/win32-generate-vc-proj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-generate-vc-proj.cmd -------------------------------------------------------------------------------- /scripts/win32-init_env_command.cmd-skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-init_env_command.cmd-skeleton -------------------------------------------------------------------------------- /scripts/win32-install_dependencies.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-install_dependencies.exe -------------------------------------------------------------------------------- /scripts/win32-install_dependencies.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-install_dependencies.nsi -------------------------------------------------------------------------------- /scripts/win32-openvibe-x.x.x-setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoche/openvibe/HEAD/scripts/win32-openvibe-x.x.x-setup.nsi --------------------------------------------------------------------------------