AlexeyAB / Yolo_mark

GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2
https://github.com/AlexeyAB/darknet
The Unlicense
1.8k stars 680 forks source link

Suggestion : to add ` button - an alternative key for label 0 #180

Open GelionLin opened 4 years ago

GelionLin commented 4 years ago

For the keyboard without ten-key pad, the first two labels 0 and 1 are too far away. This alternative key for label 0 could make the label keys to be connected to each other in sequence.

The simplest way is too add the following code on line after 927

if (pressed_key == '') current_obj_id = 0;`

Any thought?