Martin Garbade
Martin Garbade
This is not a problem anymore in commit 2c7b11b (May 23, 2020)
Getting closer: [This](https://github.com/jsbroks/coco-annotator/issues/119#issuecomment-466665532) is how to add the keypoint categories to the "Person" category. I still need to click keypoints, even if they are not visible, not sure what to...
Well, I guess that keyboard shortcuts cut help here. Eg pressing `0` for not visible which stores then (0,0,0) in the corresponding json, while automatically moving to the annotation of...
@jsbroks Could you give me a quick hint, where / how to add such a functionality? (I would drastically speed up my annotation time) I assume I need an entry...
Exactly. As mentioned [above](https://github.com/jsbroks/coco-annotator/issues/248#issuecomment-531716523) this seems to be the practice that was applied in the official COCO person keypoint annotation. Best would be to be able to select all visibility...
Your suggested coded combined with `import paper from "paper";` in the top of `shortcuts.js`, works exactly once. Pressing the shortcut another time, has no effect though. Still this is already...
So the problem comes from the fact, that while pressing "0" launches the correct function, it still draws a keypoint onto the image. This however prevents the shortcut to be...
So I added a function called "skipKeypoint" to "keypoint.js" ``` skipKeypoint(keypoint) { console.log("keypoints.js/skipKeypoint") this._keypoints.push(keypoint); } ``` and another "skipKeypoint" to "Annotation.vue": ``` [...] skipKeypoint(point, visibility, label) { console.log("Annotation.vue/skipKeypoint") let keypoint...
I could not make the `skipKeypoint` functionality working properly, however a friend who knows some vuejs could implement shortcuts to easily switch between the three visibility flags: [see the solution...
To make your suggested shortcut { default: ["+"], name: "Skip non visible keypoint", function: () => { if (this.currentAnnotation) { this.currentAnnotation.addKeypoint(new paper.Point(0,0), 0); } } }, work every time, one...