Author Archive | Daniel Chung

Logging in Python<br/>Photo by <a href="https://www.pexels.com/photo/brown-firewood-122588/">ilaria88</a>. Some rights reserved.

Logging in Python

Logging is a way to store information about your script and track events that occur. When writing any complex script in Python, logging is essential for debugging software as you develop it. Without logging, finding the source of a problem in your code may be extremely time consuming. After completing this tutorial, you will know: […]

Continue Reading 4
pexels-thirdman-6193847

Multiprocessing in Python

When you work on a computer vision project, you probably need to preprocess a lot of image data. This is time-consuming, and it would be great if you could process multiple images in parallel. Multiprocessing is the ability of a system to run multiple processors at one time. If you had a computer with a […]

Continue Reading 14