v0.1.0
FaceDetection v0.1.0
An implementation of Viola Jones' face detection algorithm written purely in Julia.
Closed issues:
- Print messages in src/FDA.jl with colour (#2)
- Ensure
$\alpha_t=\log\left(\frac{1}{\frac{\varepsilon_t}{1-\varepsilon_t}}\right)$ (#3) - Ensure calculations for weighting is true to the original algorithm (#5)
- Adjust
getVote
function to see at which point the cascade stops, and return that "face-likeness" score (#7) - Rename function names to be in line with Julia coding convention (#9)
- Refine getIntegralImage as per help from JuliaImages people (#10)
- Fix face detection accuracy (#11)
- Ensure all libraries are needed (#12)
- clean up code after bug fixing (#13)
- Consider changing deep* functions back to Base functions (#14)
- Make files modules and put exports at the start (#15)
- Ensure all
print
functions are inside of FDA.jl (i.e., the main programme) (#16) - Ensure
getScore
andgetVote
have strict parameter typing (#17) - Determine minFeatureHeight, maxFeatureHeight, minFeatureWidth, and maxFeatureWidth better (#18)
- Be explicit in which modules the functions come from (#19)
- Statistically analyse the differences in box plots. (#22)
- Get file name in csv (#23)
- Use dict to define feature_types rather than referencing ordered array (#24)