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 から作成された行列を Matlab の行列と比較したいと考えています。行列が uint8 の場合、それらを pgm イメージとして保存するとうまくいきます。しかし、私のマトリックスは CV_64FC1 (double) で、画像として保存できません。Matlab で読み取るために二重行列を保存する簡単な方法はありますか?
OpenCVサンプルからこれを試してください。
Mat r std::stringstream ss; ss << format(r,"csv") << endl << endl; myFile << ss.str(); // or even this myFile << format(r,"csv") << endl << endl;
各ピクセルの強度をファイルに書き込み、MATLABで。を使用して読み取りますimportdata。
importdata