Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
OpenCVで画像のバッファまたは配列「Mat」を取得するにはどうすればよいですか?
つまり、一連の画像を取得して、次のような配列に入れたい
これどうやってするの?C++の通常の配列スタイルのようなものですか?
Mat images[2]; images[0] = imread(...); images[1] = imread(..);
前もって感謝します。