From 08f1fcad1c74e25f97641a0ccbd229b267ec528c Mon Sep 17 00:00:00 2001 From: Michael Welter Date: Sun, 11 Sep 2022 20:55:26 +0200 Subject: tracker/nn: Tweaks, refactoring, a deadzone filtering and support for uncertainty estimation * Add rudimentary test for two functions .. maybe more in future * Fix the rotation correction from vertical translation * Move preview class to new files * Move neural network model adapters to new files * Add utility functions for opencv * Query the model inputs/outputs by name to see what is available * Supports outputs for standard deviation of the data distribution - What you get if you let your model output the full parameters of a gaussian distribution (depending on the inputs) and fit it with negative log likelihood loss. * Disabled support for sequence models * Add support for detection of eye open/close classification. Scale uncertainty estimate up if eyes closed * Add a deadzone filter which activates if the model supports uncertainty quantification. The deadzone scales becomes larger the more uncertain the model/data are. This is mostly supposed to be useful to suppress large estimate errors when the user blinks with the eyes * Fix distance being twice of what it should have been --- tracker-neuralnet/opencv_contrib.h | 120 +++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 tracker-neuralnet/opencv_contrib.h (limited to 'tracker-neuralnet/opencv_contrib.h') diff --git a/tracker-neuralnet/opencv_contrib.h b/tracker-neuralnet/opencv_contrib.h new file mode 100644 index 00000000..af92c12f --- /dev/null +++ b/tracker-neuralnet/opencv_contrib.h @@ -0,0 +1,120 @@ +#pragma once + +#include +#include +#include + +// Well eventually it might be a contribution + +namespace cvcontrib +{ + + +template +cv::Point_ as_point(const cv::Size_& s) +{ + return { s.width, s.height }; +} + + +template +cv::Size_ as_size(const cv::Point_& p) +{ + return { p.x, p.y }; +} + + +template +inline bool allfinite(const cv::Matx &mat) +{ + const size_t sz = mat.rows*mat.cols; + for (size_t i=0; i +inline cv::Vec to_vec(const cv::Matx& m) +{ + return cv::Vec{m.val}; +} + + +template +inline void set_minor(cv::Vec &dst, const int startrow, const cv::Matx &src) +{ + assert (startrow>=0 && startrow+n <= dst.rows); + for (int row=startrow, i=0; row +inline void set_minor(cv::Matx& dst, const int startrow, int startcol, const cv::Matx &src) +{ + assert (startrow>=0 && startrow+nrows <= dst.rows); + assert (startcol>=0 && startcol+ncols <= dst.cols); + for (int row=startrow, i=0; row +inline cv::Matx cholesky(const cv::Matx& mat) +{ + cv::Matx l = mat; + // Der Code ist die Doku! + // https://github.com/opencv/opencv/blob/4.5.4/modules/core/src/matrix_decomp.cpp#L95 + cv::Cholesky(l.val, l.cols * sizeof(float), n, nullptr, 0, 0); + // It doesn't clear the upper triangle so we do it for it. + for (int row=0; row