Skip to content

Commit 404ae13

Browse files
committed
Add software citation source
1 parent 5c2b8cb commit 404ae13

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In an over-simplified manner, the Viola-Jones algorithm has some four stages:
3838
- Stacking trains a learning algorithm to combine the predictions of several other learning algorithms.
3939
Despite this method being developed at the start of the century, it is blazingly fast compared to some machine learning algorithms, and still widely used.
4040
4. Finally, this algorithm uses [Cascading Classifiers](https://en.wikipedia.org/wiki/Cascading_classifiers) to identify faces. (See page 12 of the original paper for the specific cascade).
41-
41+
4242
For a better explanation, read [the paper from 2001](http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.10.6807), or see [the Wikipedia page](https://en.wikipedia.org/wiki/Viola%E2%80%93Jones_object_detection_framework) on this algorithm.
4343

4444
## Quick Start
@@ -66,6 +66,10 @@ println((correct_non_faces / num_non_faces) * 100, "% of non-faces were identifi
6666

6767
For more examples like this, see [`examples/`](examples/).
6868

69+
## Citation
70+
71+
If your research depends on FaceDetection.jl, please consider giving us a formal citation: [`citation.bib`](./citation.bib).
72+
6973
## Miscellaneous Notes
7074

7175
### Timeline of Progression

citation.bib

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@software{ireland2022facedetection,
2+
title={{FaceDetection.jl}: {Julia} implementation of {Viola}--{Jones}' rapid object detection framework},
3+
author={Ireland, Jake W},
4+
year={2024},
5+
howpublished={\url{https://github.com/jakewilliami/FaceDetection.jl}},
6+
note={{Julia} package version 1.1.0}
7+
}

0 commit comments

Comments
 (0)