2019-12-27

Python __new__ magic method explained

10 mins readPython is an object-oriented programming language, meaning that everything in Python is an object. One of Python’s unique features is […]
2019-12-16

A tutorial on Motion Estimation with Optical Flow with Python Implementation

26 mins readAdvancements in computer vision research have revolutionized the way machines perceive their environment by leveraging techniques like object detection for […]
2019-05-12

Kafka Producer and Consumer example in Python

3 mins readIn this tutorial, we are going to build Kafka Producer and Consumer in Python. Along with that, we are going […]
2017-06-17

Compiling C extension modules on Windows (Cython)

10 mins readThis page describes how to compile a Cython extension (works for CPython extensions also) for Windows. If you encounter one […]
2017-06-17

Cythonize setup.py for several .pyx files

3 mins readConcept Distutils is the standard way to build Cython extension modules for large projects. Typically one invokes setup(…) which then […]