WebCam Texture To Mat Example
通过指定摄像头编号或名称,从而获取WebCamDevice对象和WebCamTexture对象;如果没有指定,则默认从后置摄像头获取。
WebCamDevice对象创建时,可以指定宽度,高度,帧率。
Update中,将WebCamDevice对象先缓存到自定义Mat对象中,再从Mat转存至Texture2D对象中。分别用到Utils.webCamTextureToMat (webCamTexture, rgbaMat, colors)和Utils.matToTexture2D (rgbaMat, texture, colors)两个方法。
WebCamTexture To MatHelper Example
外接摄像头的相关操作
Mat Basic Processing Example
Core工具类对于Mat的操作
Utils_Get File Path Example
获取StreamingAssets中指定文件名的文件的路径
Advanced(进阶)
Match Shapes Example
轮廓匹配
Imgproc.findContours (srcMat, srcContours, srcHierarchy, Imgproc.RETR_CCOMP, Imgproc.CHAIN_APPROX_NONE)--识别轮廓数目
Imgproc.drawContours (dstMat, srcContours, i, new Scalar (255, 0, 0), 2, 8, srcHierarchy, 0, new Point ())绘制红色轮廓线
Imgproc.circle (dstMat, point, 5, new Scalar (0, 0, 255), -1)绘制蓝色轮廓中心点
Imgproc.putText (dstMat, " " + returnVal, point, Imgproc.FONT_HERSHEY_SIMPLEX, 0.4, new Scalar (0, 255, 0), 1, Imgproc.LINE_AA, false)绘制绿色误差数值
Match Template Example
模板匹配
对于旋转,缩放缺少应对力
Threshold Example
阈值
Imgproc.threshold (Mat src, Mat dst, double thresh, double maxval, int type)
Wrap Perspective Example
透视变换
Mat perspectiveTransform = Imgproc.getPerspectiveTransform (src_mat, dst_mat)
videoio
Inpaint Example
图像修复
Photo.inpaint (Mat src, Mat inpaintMask, Mat dst, double inpaintRadius, int flags)
SeamlessClone Example
无缝融合
Photo.seamlessClone (Mat src, Mat dst, Mat mask, Point p, Mat blend, int flags)
Contrib modules(暂时不知道什么模块)
aruco