12 Mart 2017 Pazar

OpenCV Mat Sınıfı

Giriş
Şu satırı dahil ederiz.
import org.opencv.core.Mat;
constructor - width + height + type
Şöyle yaparız.
int t = ...;
int w = ...;
int h = ...;
constructor - width + height + type + value
Şöyle yaparız.
Mat m = new Mat(200,400, CvType.CV_8UC3,new Scalar(0,100,0));
get metodu
Şöyle yaparız.
Mat m = ...;
long nbytes = m.total() * m.elemSize();
byte[] bytes = new byte[ (int)nbytes ];
m.get(0, 0,bytes);
put metodu
Şöyle yaparız.
int t = ...;
int w = ...;
int h = ...;
byte[] p = ...;
Mat m = new Mat(h,w,t);
m.put(0,0,p);



Hiç yorum yok:

Yorum Gönder