default_config.yaml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. auto_save: false
  2. display_label_popup: true
  3. store_data: true
  4. keep_prev: false
  5. keep_prev_scale: false
  6. keep_prev_brightness: false
  7. keep_prev_contrast: false
  8. logger_level: info
  9. flags: null
  10. label_flags: null
  11. labels: null
  12. file_search: null
  13. sort_labels: true
  14. validate_label: null
  15. default_shape_color: [0, 255, 0]
  16. shape_color: auto # null, 'auto', 'manual'
  17. shift_auto_shape_color: 0
  18. label_colors: null
  19. shape:
  20. # drawing
  21. line_color: [0, 255, 0, 128]
  22. fill_color: [0, 255, 0, 0] # transparent
  23. vertex_fill_color: [0, 255, 0, 255]
  24. # selecting / hovering
  25. select_line_color: [255, 255, 255, 255]
  26. select_fill_color: [0, 255, 0, 155]
  27. hvertex_fill_color: [255, 255, 255, 255]
  28. point_size: 8
  29. # main
  30. flag_dock:
  31. show: true
  32. closable: true
  33. movable: true
  34. floatable: true
  35. label_dock:
  36. show: true
  37. closable: true
  38. movable: true
  39. floatable: true
  40. shape_dock:
  41. show: true
  42. closable: true
  43. movable: true
  44. floatable: true
  45. file_dock:
  46. show: true
  47. closable: true
  48. movable: true
  49. floatable: true
  50. # label_dialog
  51. show_label_text_field: true
  52. label_completion: startswith
  53. fit_to_content:
  54. column: true
  55. row: false
  56. # canvas
  57. epsilon: 10.0
  58. canvas:
  59. # None: do nothing
  60. # close: close polygon
  61. double_click: close
  62. # The max number of edits we can undo
  63. num_backups: 10
  64. # show crosshair
  65. crosshair:
  66. polygon: false
  67. rectangle: true
  68. circle: false
  69. line: false
  70. point: false
  71. linestrip: false
  72. ai_polygon: false
  73. shortcuts:
  74. close: Ctrl+W
  75. open: Ctrl+O
  76. open_dir: Ctrl+U
  77. quit: Ctrl+Q
  78. save: Ctrl+S
  79. save_as: Ctrl+Shift+S
  80. save_to: null
  81. delete_file: Ctrl+Delete
  82. open_next: [D, Ctrl+Shift+D]
  83. open_prev: [A, Ctrl+Shift+A]
  84. zoom_in: [Ctrl++, Ctrl+=]
  85. zoom_out: Ctrl+-
  86. zoom_to_original: Ctrl+0
  87. fit_window: Ctrl+F
  88. fit_width: Ctrl+Shift+F
  89. create_polygon: Ctrl+N
  90. create_rectangle: Ctrl+R
  91. create_circle: null
  92. create_line: null
  93. create_point: null
  94. create_linestrip: null
  95. edit_polygon: Ctrl+J
  96. delete_polygon: Delete
  97. duplicate_polygon: Ctrl+D
  98. copy_polygon: Ctrl+C
  99. paste_polygon: Ctrl+V
  100. undo: Ctrl+Z
  101. undo_last_point: Ctrl+Z
  102. add_point_to_edge: Ctrl+Shift+P
  103. edit_label: Ctrl+E
  104. toggle_keep_prev_mode: Ctrl+P
  105. remove_selected_point: [Meta+H, Backspace]