Android的洪水填充算法

编程入门 行业动态 更新时间:2024-10-28 07:23:32
本文介绍了Android的洪水填充算法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

有谁知道一个迭代,高效的算法洪水填充?

Does anyone know a iterative and efficient algorithm for flood-fill?

或者有什么办法来实现递归此时,floodFill 算法没有堆栈溢出错误?

Or is there any way to implement recursive floodfill algorithm without stack overflow error?

试过一个@ 洪水填充使用堆栈 但我不能找到一种方法来工作,黑白图像。

Tried the one @ Flood fill using a stack but i cant find a way to work on white and black image.

推荐答案

这个算法为我工作不错。

this algorithm worked good for me.

private void FloodFill(Bitmap bmp, Point pt, int targetColor, int replacementColor) { Queue<Point> q = new LinkedList<Point>(); q.add(pt); while (q.size() > 0) { Point n = q.poll(); if (bmp.getPixel(n.x, n.y) != targetColor) continue; Point w = n, e = new Point(n.x + 1, n.y); while ((w.x > 0) && (bmp.getPixel(w.x, w.y) == targetColor)) { bmp.setPixel(w.x, w.y, replacementColor); if ((w.y > 0) && (bmp.getPixel(w.x, w.y - 1) == targetColor)) q.add(new Point(w.x, w.y - 1)); if ((w.y < bmp.getHeight() - 1) && (bmp.getPixel(w.x, w.y + 1) == targetColor)) q.add(new Point(w.x, w.y + 1)); w.x--; } while ((e.x < bmp.getWidth() - 1) && (bmp.getPixel(e.x, e.y) == targetColor)) { bmp.setPixel(e.x, e.y, replacementColor); if ((e.y > 0) && (bmp.getPixel(e.x, e.y - 1) == targetColor)) q.add(new Point(e.x, e.y - 1)); if ((e.y < bmp.getHeight() - 1) && (bmp.getPixel(e.x, e.y + 1) == targetColor)) q.add(new Point(e.x, e.y + 1)); e.x++; } } }

更多推荐

Android的洪水填充算法

本文发布于:2023-11-09 19:28:39,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1573229.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:洪水   算法   Android

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!