Monday, September 2, 2019

Simple example of all_of from C++ algorithm library

Overview

This article shows the simple example of all_of from algorithm library on C++.


Simple example of transform from C++ algorithm library

Overview

This article shows simple example of the transform function from algorithm library of C++ and its syntax.


Sunday, March 17, 2019

Face anonymizer with Python

Abstract

On this article, I’ll introduce how to anonymize human’s face and the code for that with Python.
Although I’m not 100% sure, when we compare with before, I think the face detection has been reaching certain level of accuracy. If the picture is not so complex, with some accuracy, the faces are detected. With this face detection, relatively easily, we can anonymize human’s face.

Monday, January 14, 2019

Scala like error handling with Python

Abstract

On this article, I’ll try to do Scala-like error and output handling with Python.
This is my personal memo.