config_LENS|macrodim3.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Config file for Stage 5 - Channel-wise Wave Characterization
  2. # Name of stage, must be identical with folder name
  3. STAGE_NAME: 'stage05_channel_wave_characterization'
  4. # The profile name is the key for this parameter configuration. Results are stored in output_path/<PROFILE>/ (output_path is defined in settings.py)
  5. PROFILE: 'LENS'
  6. # Name of the output file
  7. STAGE_OUTPUT: 'wavefronts_channel-wise_measures.csv'
  8. # If True (default), the output file of a stage is created as symbolic link
  9. # to the last block output. If False, a duplicate is created (e.g. for cloud
  10. # application, where sym-links are not supported).
  11. USE_LINK_AS_STAGE_OUTPUT: True
  12. # Plotting parameters
  13. PLOT_TSTART: 0 # in s
  14. PLOT_TSTOP: 10 # in s
  15. PLOT_CHANNELS: 'None' # int or None. default 'None' -> randomly selected
  16. PLOT_FORMAT: 'png'
  17. # Wave event name
  18. # 'wavefronts', 'wavemodes'
  19. EVENT_NAME: 'wavefronts'
  20. # Measures to compute
  21. # 'velocity_local', 'direction_local', 'inter_wave_interval_local', 'annotations'
  22. MEASURES: ['annotations', 'velocity_local', 'direction_local',
  23. 'flow_direction_local', 'inter_wave_interval_local']
  24. # Velocity/Direction local
  25. ################
  26. # simple_3x3, prewitt_3x3, scharr_3x3, sobel_3x3, sobel_5x5, sobel_7x7
  27. KERNEL: 'scharr_3x3'
  28. INTERPOLATE: True
  29. # smoothing factor for the interpolation (0 = no smoothing)
  30. SMOOTHING: 109
  31. # Annotations
  32. #############
  33. # Use include_keys, if they are empty apply ignore_keys
  34. INCLUDE_KEYS: ['wavemode', 'spatial_scale', 'anesthetic', 'concentration',
  35. 'doi', 'disease_model', 'model_type', 'technique',
  36. 'x_coords', 'y_coords', 'macro_pixel_dim']
  37. IGNORE_KEYS: ['cluster_algorithm', 'cluster_eps', 'cluster_metric',
  38. 'cluster_min_samples', 'threshold', 'experimental_lab',
  39. 'psd_freq_res', 'psd_overlap', 'psd_fs'
  40. ]