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.
一部の Aruco ファイルで奇妙な構文を見つけました。
vector< cv::Mat > thres_images(n_param1);
は関数のようthres_imagesですが、もしそうなら、そのvector< cv::Mat >前に何がありますか? 宣言でも定義でもありません。後で配列として使用されます。
thres_images
vector< cv::Mat >
thres = thres_images[n_param1 / 2];
PS: 完全なコードはここにあります
thres_imagesはベクトルであり、その ctor はn_param1初期コンテナー サイズとして渡されます。この ctor は、fill ctor と呼ばれます。
n_param1