[YOLO] YOLODetectObjects example // I want to know about the detected information

@cansik / help me.
pic

As shown in the picture,
Can I get information about the functions for that library?

ex)
.hashCode()
.isSkipNMS()
.loadLabels(Path)
.notify()
…etc

Is there any reference material with coding information?
Or do you have a site?

help me, please.

1 Like

If you scroll through the readme of the repository, you will find some explanations for the Object Detection networks. As mentioned in my post, the documentation is not complete yet, but most of the possibilities are shown in the various examples. Otherwise I recommend you to go through the code of the library.

If you have a specific question, feel free to ask it directly.

Update:

  • isSkipNMS() & setSkipNMS(): Skips the non-maximum suppression part of the YOLO output (not recommended)
  • loadLabels() & setLabels(): load from txt file or set the labels (names) for the object detection classes, otherwise only the id of the object class is returned in the result

The other two methods hashCode() & notify() are java related methods, not defined by the library.

4 Likes

@cansik

very very, Thank you.~