cv4j icon indicating copy to clipboard operation
cv4j copied to clipboard

The target is to set up a high quality and real-time image process and machine learning library which is implemented in pure java. The framework can run application on java desktop and android platfor...

Results 15 cv4j issues
Sort by recently updated
recently updated
newest added

请问下我想把黑白图像线条上多余的点删除掉,可以选哪个功能实现? ![image](https://user-images.githubusercontent.com/8948721/47195080-e2dfcc80-d38c-11e8-8a78-2a5e1cf66395.png)

部分Code: V4JImage cv4JImage = new CV4JImage(bitmap); ImageProcessor img= cv4JImage.getProcessor(); com.cv4j.core.datamodel.Rect rect =findQRCodeBounding(img, 1, 6); if(rect.tl().x>0&&rect.tl().y>0&&rect.br().x>0&&rect.br().y>0) { bitmap = Bitmap.createBitmap(bitmap, rect.tl().x, rect.tl().y, Math.abs(rect.br().x-rect.tl().x ),Math.abs(rect.br().y-rect.tl().y)); }

模板匹配的页面卡顿严重,可能导致应用ANR了,建议优化相关算法代码,以及异步操作匹配相关代码