The Wayback Machine - http://web.archive.org/web/20200714044249/https://github.com/topics/pupil-detection
Skip to content
#

pupil-detection

Here are 11 public repositories matching this topic...

steven807
steven807 commented Sep 18, 2018

It is hard to be sure with C++ being as unsafe as it is, but it looks like the two calls to cv::Sobel() take one too few arguments. They look like:

Sobel(blurred, dx, dx.type(), 1, 0, 7, 1, BORDER_REPLICATE);
Sobel(blurred, dy, dy.type(), 0, 1, 7, 1, BORDER_REPLICATE);

but the interface to cv::Sobel() is:

Sobel( InputArray src, OutputArray dst, int ddepth,
              

Improve this page

Add a description, image, and links to the pupil-detection topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the pupil-detection topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.