?? calibratorocv.java
字號:
/* * CalibratorOCV.java */package itesm.gvision.apps.calibrator;//----------------------------------------------------------------------------------/** * * @author hugo */public class CalibratorOCV { /** Creates a new instance of CalibratorOCV */ public CalibratorOCV() { System.loadLibrary("ocvcalib"); this.initOCVCalibrator(); } //---------------------------------------------------------------------------------- public native void initOCVCalibrator(); public native double[] findCorners(int img[], int w, int h); public native void addCalibrationImage(int img[], int w, int h); public native boolean calibrate(); public native double[] getResults(); public native int[] getUndistortedImage(int img[], int w, int h); public native double[] getHomographyMatrix(double img[], double rw[], int np, int w, int h);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -