You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OV_TACTILE_PANDA.conf 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. ########################################################################################################################
  2. # This configuration file contains declarations of variables used by the scenarios of the tactile BCI System #
  3. # #
  4. # Add --config PATH_TO_THIS_FILE when starting the designer from the command line #
  5. # USE --define TOKEN VALUE to assign a different value to a token without changing the default configuration #
  6. # #
  7. # #
  8. # Scenarios requiring this configuration file: p300-tactile-0-signal-monitoring.xml, p300-tactile-1-acquisition.xml, #
  9. # p300-tactile-2-train-xDAWN.xml, p300-tactile-3-train-classifier.xml, #
  10. # p300-tactile-4-online.xml #
  11. # #
  12. # Author : Tobias Baumann #
  13. # Date : 2021-12-27 #
  14. ########################################################################################################################
  15. ########################################################################################################################
  16. # General #
  17. ########################################################################################################################
  18. PATH_CONFIG = ${Player_ScenarioDirectory}/cfg
  19. PATH_SCRIPTS = ${Player_ScenarioDirectory}/scripts
  20. PATH_SIGNALS = ${Player_ScenarioDirectory}/signals
  21. PATH_UI = ${Player_ScenarioDirectory}
  22. ROW_BASE = OVTK_StimulationId_Label_01
  23. COL_BASE = OVTK_StimulationId_Label_07
  24. FREE_SPELLING = true
  25. ########################################################################################################################
  26. # Acquisition and Signal Processing #
  27. ########################################################################################################################
  28. ACQUISITION_SERVER_HOST_NAME = ${AcquisitionServer_HostName}
  29. ACQUISITION_SERVER_PORT = 1024
  30. SIGNAL_DECIMATION_FACTOR = 2
  31. FILTER_METHOD = Butterworth
  32. FILTER_TYPE = Band Pass
  33. FILTER_ORDER = 4
  34. LOW_CUT_FREQUENCY = 1.000000
  35. HIGH_CUT_FREQUENCY = 20.000000
  36. PASS_BAND_RIPPLE = 0.500000
  37. ########################################################################################################################
  38. # Stimulation #
  39. ########################################################################################################################
  40. SCRIPT_TACTILE_STIMULATOR = ${PATH_SCRIPTS}/p300-tactile-stimulator.lua
  41. N_TACTILOS = 6
  42. N_REPETITIONS = 4
  43. N_TRIALS = 4
  44. STIM_DURATION = 0.2
  45. NO_STIM_DURATION = 0.1
  46. INTER_REPETITION_DELAY = 1.0
  47. INTER_TRIAL_DELAY = 3.0
  48. START_STIMULATION = OVTK_StimulationId_Label_00
  49. START_DELAY = 20
  50. ########################################################################################################################
  51. # Tactilo Control #
  52. ########################################################################################################################
  53. SERIAL_PORT = /dev/ttyACM0
  54. ########################################################################################################################
  55. # Target Generation #
  56. ########################################################################################################################
  57. SCRIPT_TARGET_GENERATION = ${PATH_SCRIPTS}/p300-tactile-target.lua
  58. SEND_DELAY = 2
  59. ########################################################################################################################
  60. # FILE I/O #
  61. ########################################################################################################################
  62. OUTPUT_FILE_NAME = ${PATH_SIGNALS}/p300-tactile-session.ov
  63. INPUT_FILE_NAME = ${PATH_SIGNALS}/p300-tactile-session.ov
  64. ########################################################################################################################
  65. # xDAWN Spatial Filter #
  66. ########################################################################################################################
  67. SPATIAL_TRAIN_TRIGGER = OVTK_StimulationId_ExperimentStop
  68. SPATIAL_FILTER_CONFIG = ${PATH_CONFIG}/p300-spatial-filter.cfg
  69. FILTER_DIMENSION = 2
  70. ########################################################################################################################
  71. # P300 Classifier #
  72. ########################################################################################################################
  73. CLASSIFIER_TRAIN_TRIGGER = OVTK_StimulationId_ExperimentStop
  74. CLASSIFIER_CONFIG = ${PATH_CONFIG}/p300-classifier.cfg
  75. MULTICLASS_STRATEGY = Native
  76. CLASS_1 = OVTK_StimulationId_Target
  77. CLASS_2 = OVTK_StimulationId_NonTarget
  78. ALGORITHM = Linear Discrimimant Analysis (LDA)
  79. USE_SHRINKAGE = false
  80. SHRINKAGE_COEFFICIENT = -1.000000
  81. SHRINKAGE_FORCE_DIAGONAL_COV = false
  82. N_PARTITIONS = 5
  83. CLASS_BALANCE = false
  84. ########################################################################################################################
  85. # P300 ACCUMULATOR #
  86. ########################################################################################################################
  87. SCRIPT_P300_ACCUMULATOR = ${PATH_SCRIPTS}/p300-tactile-accumulator.lua
  88. ########################################################################################################################
  89. # Speller Visualization #
  90. ########################################################################################################################
  91. TACTILE_UI = ${PATH_UI}/p300-tactile.ui
  92. FLASH_BG = 5,5,5
  93. FLASH_FG = 100,100,100
  94. FLASH_FONT_SIZE = 50
  95. NO_FLASH_BG = 0,0,0
  96. NO_FLASH_FG = 25,25,25
  97. NO_FLASH_FONT_SIZE = 50
  98. TARGET_BG = 20,20,70
  99. TARGET_FG = 10,10,30
  100. TARGET_FONT_SIZE = 50
  101. SELECTED_BG = 10,40,10
  102. SELECTED_FG = 60,100,60
  103. SELECTED_FONT_SIZE = 50