Skip to content Skip to sidebar Skip to footer
Showing posts with the label Cython

Cython Wrapping A Class That Uses Another Library

I've got some C++ code dbscan.cpp and dbscan.h that work great standalone. Now I'm trying t… Read more Cython Wrapping A Class That Uses Another Library

Building Minimal Cython File With Python 3.3 (anaconda) Under Windows 7

When I try to build a minimal Cython file test.pyx with Python 3.3 (Anaconda 3) under windows 7, I … Read more Building Minimal Cython File With Python 3.3 (anaconda) Under Windows 7

Pass A Cython Allocated Buffer To Python

I am aware of this post about passing over Cython malloc'ed data to Python. I however wonder if… Read more Pass A Cython Allocated Buffer To Python

Cython - Iterate Through Map

I was wondering if this was possible to iterate through a map directly in Cython code, ie, in the .… Read more Cython - Iterate Through Map

Cython C++ Wrapper Operator() Overloading Error

Connected with my previous question. Using Cython to wrap a C++ class that uses OpenCV types as pa… Read more Cython C++ Wrapper Operator() Overloading Error

Tutorials On Optimizing Non-trivial Python Applications With C Extensions Or Cython

The Python community has published helpful reference material showing how to profile Python code, a… Read more Tutorials On Optimizing Non-trivial Python Applications With C Extensions Or Cython