OpenCV

PythonからSQLite3に保存した画像をC++ OpenCVでdecode

タイトルの日本語わかりにくくない? ここでは画像はpng形式のものを使うことにします。適宜置き換えてください まずはPythonからsqlite3に画像を保存する。 import sqlite3 img_path = "hoge.png" # open image and write byte to blob with open(img_path,…