From: Tomas Musil Date: Mon, 23 Jun 2014 17:29:21 +0000 (+0200) Subject: comment in pcf.c X-Git-Url: http://git.tomasm.cz/imago.git/commitdiff_plain/ffbceafad3b67b48c3206a232a99065bc4d00a81?hp=0acee7985cbb654d6fa50cb845c7c03ce6bb8a1d comment in pcf.c --- diff --git a/pcf.c b/pcf.c index 1682dbb..46fb6f7 100644 --- a/pcf.c +++ b/pcf.c @@ -25,6 +25,12 @@ static PyObject* py_combine(PyObject* self, PyObject* args) return Py_BuildValue("d", ((double) sum) / area); } +/* Hough transform + * + * Takes dimentions of the image, the image, TODO size of what?, initial angle and TODO dt is what?. + * Computes Hough transform of the image. TODO size etc. + * + */ static PyObject* py_hough(PyObject* self, PyObject* args) { const unsigned char *image; @@ -95,6 +101,7 @@ static PyObject* py_hough(PyObject* self, PyObject* args) return result; } + static PyObject* py_edge(PyObject* self, PyObject* args) { const unsigned char *image;