すごくメモ帳

すごくほぼメモ帳ぐらいなブログ

OpenCV

C++で旭日旗を描いてみた

C++で日章旗を描いてみたの続きです。 環境 言語: C++ コンパイラー: g++ 依存: OpenCV4 Makefile CC = g++ SOURCE = flag.cpp PROGRAM = flag $(PROGRAM): $(SOURCE) $(CC) $(SOURCE) `pkg-config opencv4 --cflags --libs` -o $(PROGRAM) プログラム #incl…

C++で日章旗を描いてみた

環境 言語: C++ コンパイラー: g++ 依存: OpenCV4 Makefile CC = g++ SOURCE = flag.cpp PROGRAM = flag $(PROGRAM): $(SOURCE) $(CC) $(SOURCE) `pkg-config opencv4 --cflags --libs` -o $(PROGRAM) プログラム #include <iostream> #include <opencv2/opencv.hpp> #define puts(x) cout <</opencv2/opencv.hpp></iostream>…