Skip to content

Commit aa95601

Browse files
committed
Added Doxygen documentation, reverted detect change, improved detection pipeline
Changes: - Added Doxygen documentation for marco_annunziata.cpp and marco_annunziata.hpp - Updated README with doxygen documentation and instructions - Reverted detect change made in commit 4ad8bae, solving related bug on small images - Improved detection pipeline for tiled images by doing a final detection on the whole image (solved bug on 5C0.jpg) - Added clearDetections() - Changed DrawBoundingBoxes to have less parameters (more difficult to pass wrong arguments)
1 parent 2bb443a commit aa95601

File tree

7 files changed

+3014
-28
lines changed

7 files changed

+3014
-28
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ output/*
66
data/test/*
77
build/*
88
external/onnxruntime-linux-x64-gpu-1.21.0.tgz
9+
doxygen_docs/

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ In order to do this, some tools like [CVAT](https://www.cvat.ai/), [Label studio
126126

127127
# Code
128128
## Doxygen Documentation
129+
The [pdf file](./doxygen_docs/latex/refman.pdf) of the Doxygen documentation is already bundled inside the repo.
130+
To get the html version (or to build the pdf from scratch), the Doxygen documentation can be generated by running:
131+
```
132+
doxygen doxygen.txt
133+
```
129134

130135
## Object Detection and Initial Classification
131136
### Training of the model and exporting to ONNX format
@@ -167,3 +172,4 @@ For custom files, ground truths can be manually added inside the `data/test/grou
167172
If the ground truths for a custom file are not provided, the program will still run the detection pipeline without computing metrics.
168173

169174
# Output
175+
The output of the detection is saved in a output/ folder.

0 commit comments

Comments
 (0)