Ole*_*sov 6 java geometry android opencv
目前我正在开发一个应用程序,它将检测照片中的圆圈.我已经设法为此编写了一个代码,但如果我从PC屏幕稍微离开电话,它可能会出现漏报或误报.如何改进结果呢?我的意思是,有很多应用可以检测出小而不清楚的圆圈.
[更新]
我在摆弄值GaussianBlur和HoughCircles.更改
Imgproc.GaussianBlur(grayMat, grayMat, new Size(9, 9), 2, 2);到Imgproc.GaussianBlur(grayMat, grayMat, new Size(9, 9), 9, 9);双param1 = 70, param2 = 72;到double param1 = 50, param2 = 52;改善的结果,但还不够.
Mat mat = new Mat(bitmap.getWidth(), bitmap.getHeight(),
CvType.CV_8UC1);
Mat grayMat = new Mat(bitmap.getWidth(), bitmap.getHeight(),
CvType.CV_8UC1);
Utils.bitmapToMat(bitmap, mat);
int colorChannels = (mat.channels() == 3) ? Imgproc.COLOR_BGR2GRAY
: ((mat.channels() == 4) ? Imgproc.COLOR_BGRA2GRAY : 1);
Imgproc.cvtColor(mat, grayMat, colorChannels);
Imgproc.GaussianBlur(grayMat, grayMat, new Size(9, 9), 2, 2);
// accumulator value
double dp = 1.2d;
// minimum distance between the center coordinates of detected circles in pixels
double minDist = 100;
int minRadius = 0, maxRadius = 0;
double param1 = 70, param2 = 72;
Mat circles = new Mat(bitmap.getWidth(),
bitmap.getHeight(), CvType.CV_8UC1);
Imgproc.HoughCircles(grayMat, circles,
Imgproc.CV_HOUGH_GRADIENT, dp, minDist, param1,
param2, minRadius, maxRadius);
int numberOfCircles = 9;
if (numberOfCircles > circles.cols()){
numberOfCircles = circles.cols();
}
for (int i=0; i<numberOfCircles; i++) {
double[] circleCoordinates = circles.get(0, i);
if(circleCoordinates == null){
break;
}
int x = (int) circleCoordinates[0], y = (int) circleCoordinates[1];
Point center = new Point(x, y);
android.graphics.Point centerC = new android.graphics.Point(x, y);
int radius = (int) circleCoordinates[2];
Core.circle(mat, center, radius, new Scalar(0,
255, 0), 4);
Core.rectangle(mat, new Point(x - 5, y - 5),
new Point(x + 5, y + 5),
new Scalar(0, 128, 255), -1);
Run Code Online (Sandbox Code Playgroud)
提前致谢.
现在我使用那些A形点测试代码,但我想在照片上检测更小的圆圈.

| 归档时间: |
|
| 查看次数: |
771 次 |
| 最近记录: |