java 修改mat的像素数据

来源:互联网 发布:惠州人民政府网络问政 编辑:程序博客网 时间:2024/05/21 17:46

In Java you can use Mat::get() and Mat::put() methods. One pixel can be read by

double[] Mat::get(int row, int col)

One or few pixels can be written by

Mat::put(int row, int col, double... data)

But if you're going to work with many pixels, it's better to get all the Mat data at once to Java primitive array, work with it in Java, and then put it back to Mat with a single JNI call. The corresponding Java primitive array type depends on the Mat type:

CV_8U and CV_8S -> byte[],CV_16U and CV_16S -> short[],CV_32S -> int[],CV_32F -> float[],CV_64F-> double[].

So the code will look like following:

Mat m = ...  // assuming it's of CV_8U typebyte buff[] = new byte[m.total() * m.channels()];m.get(0, 0, buff);// working with buff// ...m.put(0, 0, buff);

原创粉丝点击