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.
JavaCVのようdouble[][]にJava-Arrayを変換する簡単な方法はありますか?CvMat
double[][]
CvMat
cv::Mat Table(8, 8, CV_32FC1, table);OpenCVでは、tableは 8x8 配列と言えると思います。しかし、JavaCv では機能しません。
cv::Mat Table(8, 8, CV_32FC1, table);
table
さて、JavaCv が単一の配列をマトリックスに配置できることがわかりました。したがって、2d-Array を 1d-Array に変換し、これを で行列に入れることができMatrix.put(array)ます。
Matrix.put(array)