Giter Club home page Giter Club logo

pydeconv's People

Contributors

alexis-mignon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

pydeconv's Issues

Write the usage example

I believe that this package is really great but I really don't have any idea how to use it. Reading the code does not help either because there is no def deblur(img) and besides there is no docs about what format img must have. Please write the docs.

[PATCH] fatal error: numpy/arrayobject.h: No such file or director

% python setup.py build_ext                                                                                                                                                                                                                                                                                         running build_ext
skipping 'pydeconv/utils.c' Cython extension (up-to-date)
building 'pydeconv.utils' extension
C compiler: x86_64-pc-linux-gnu-gcc -pthread -fPIC

compile options: '-I/usr/include/python2.7 -c'
x86_64-pc-linux-gnu-gcc: pydeconv/utils.c
pydeconv/utils.c:275:31: fatal error: numpy/arrayobject.h: No such file or directory
compilation terminated.
pydeconv/utils.c:275:31: fatal error: numpy/arrayobject.h: No such file or directory
compilation terminated.
error: Command "x86_64-pc-linux-gnu-gcc -pthread -fPIC -I/usr/include/python2.7 -c pydeconv/utils.c -o build/temp.linux-x86_64-2.7/pydeconv/utils.o" failed with exit status 1

The following patch fixes the issue:

diff --git a/setup.py b/setup.py
index 2a4cb41..ca53743 100644
--- a/setup.py
+++ b/setup.py
@@ -3,9 +3,11 @@
 from distutils.core import setup
 from distutils.extension import Extension
 from Cython.Distutils import build_ext
+from numpy.distutils.misc_util import get_numpy_include_dirs

 ext_modules = [
     Extension("pydeconv.utils", ["pydeconv/utils.pyx"],
+    include_dirs=get_numpy_include_dirs(),
     ),
 ]

HTH

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.