From ffbceafad3b67b48c3206a232a99065bc4d00a81 Mon Sep 17 00:00:00 2001 From: Tomas Musil Date: Mon, 23 Jun 2014 19:29:21 +0200 Subject: [PATCH] comment in pcf.c --- pcf.c | 7 +++++++ 1 file changed, 7 insertions(+) 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; -- 2.4.2