Bitmap/Flood fill: Difference between revisions

no edit summary
imported>Chinhouse
No edit summary
 
(16 intermediate revisions by 10 users not shown)
Line 1:
{{task|Raster graphics operations}}[[Category:Graphics algorithms]]
{{task|Raster graphics operations}}Implement a [[wp:flood fill|flood fill]].
 
A flood fill is a way of filling an area using ''color banks'' to define the contained area or a ''target color'' which "determines" the area (the ''valley'' that can be flooded; Wikipedia uses the term ''target color''). It works almost like a water flooding from a point towards the banks (or: inside the valley): if there's a hole in the banks, the flood is not contained and all the image (or all the "connected valleys") get filled.
Line 8:
[[Image:Unfilledcirc.png|128px|thumb|right]]
'''Testing''': the basic algorithm is not suitable for ''truecolor'' images; a possible test image is the one shown on the right box; you can try to fill the white area, or the black inner circle.
=={{header|Action!}}==
In the following solution a simple implementation of queue has been used.
{{libheader|Action! Bitmap tools}}
<syntaxhighlight lang="action!">INCLUDE "H6:RGBCIRCL.ACT" ;from task Midpoint circle algorithm
 
RGB black,white,yellow,blue
 
DEFINE PTR="CARD"
TYPE PointB=[BYTE px,py]
TYPE Queue=[PTR qfront,qrear,qdata INT capacity]
 
PROC QueueInit(Queue POINTER q)
DEFINE MAXSIZE="500"
CARD ARRAY a(MAXSIZE)
 
q.qfront=0
q.qrear=0
q.capacity=MAXSIZE
q.qdata=a
RETURN
 
BYTE FUNC IsQueueEmpty(Queue POINTER q)
IF q.qfront=q.qrear THEN
RETURN (1)
FI
RETURN (0)
 
PROC QueuePush(Queue POINTER q PointB POINTER p)
PTR rear
PointB POINTER tmp
 
rear=q.qrear+1
IF rear=q.capacity THEN
rear=0
FI
IF rear=q.qfront THEN
Break()
FI
tmp=q.qdata+q.qrear*2
tmp.px=p.px
tmp.py=p.py
q.qrear=rear
RETURN
 
PROC QueuePop(Queue POINTER q PointB POINTER p)
PointB POINTER tmp
 
IF IsQueueEmpty(q) THEN
Break()
FI
tmp=q.qdata+q.qfront*2
p.px=tmp.px
p.py=tmp.py
q.qfront==+1
IF q.qfront=q.capacity THEN
q.qfront=0
FI
RETURN
 
PROC DrawImage(RgbImage POINTER img BYTE x,y)
RGB POINTER p
BYTE i,j
 
p=img.data
FOR j=0 TO img.h-1
DO
FOR i=0 TO img.w-1
DO
IF RgbEqual(p,yellow) THEN
Color=1
ELSEIF RgbEqual(p,white) THEN
Color=2
ELSEIF RgbEqual(p,blue) THEN
Color=3
ELSE
Color=0
FI
Plot(x+i,y+j)
p==+RGBSIZE
OD
OD
RETURN
 
PROC FloodFill(RgbImage POINTER img BYTE x0,y0 RGB POINTER col)
Queue q
RGB c,tmp
PointB p
 
GetRgbPixel(img,x0,y0,c)
IF RgbEqual(c,col) THEN
RETURN
FI
p.px=x0 p.py=y0
QueueInit(q)
QueuePush(q,p)
WHILE IsQueueEmpty(q)=0
DO
QueuePop(q,p)
x0=p.px y0=p.py
 
GetRgbPixel(img,x0,y0,tmp)
IF RgbEqual(tmp,c) THEN
SetRgbPixel(img,x0,y0,col)
 
IF x0>0 THEN
GetRgbPixel(img,x0-1,y0,tmp)
IF RgbEqual(tmp,c) THEN
p.px=x0-1 p.py=y0
QueuePush(q,p)
FI
FI
IF x0<img.w-1 THEN
GetRgbPixel(img,x0+1,y0,tmp)
IF RgbEqual(tmp,c) THEN
p.px=x0+1 p.py=y0
QueuePush(q,p)
FI
FI
IF y0>0 THEN
GetRgbPixel(img,x0,y0-1,tmp)
IF RgbEqual(tmp,c) THEN
p.px=x0 p.py=y0-1
QueuePush(q,p)
FI
FI
IF y0<img.h-1 THEN
GetRgbPixel(img,x0,y0+1,tmp)
IF RgbEqual(tmp,c) THEN
p.px=x0 p.py=y0+1
QueuePush(q,p)
FI
FI
FI
OD
RETURN
 
PROC Main()
RgbImage img
BYTE CH=$02FC,size=[40]
BYTE ARRAY p(4800)
BYTE n
INT x,y
RGB POINTER col
 
Graphics(7+16)
SetColor(0,13,12) ;yellow
SetColor(1,0,14) ;white
SetColor(2,8,6) ;blue
SetColor(4,0,0) ;black
 
RgbBlack(black)
RgbYellow(yellow)
RgbWhite(white)
RgbBlue(blue)
 
InitRgbImage(img,size,size,p)
FillRgbImage(img,black)
 
RgbCircle(img,size/2,size/2,size/2-1,white)
RgbCircle(img,2*size/5,2*size/5,size/5,white)
DrawImage(img,0,(96-size)/2)
 
FloodFill(img,3*size/5,3*size/5,white)
DrawImage(img,size,(96-size)/2)
 
FloodFill(img,2*size/5,2*size/5,blue)
DrawImage(img,2*size,(96-size)/2)
 
FloodFill(img,3*size/5,3*size/5,yellow)
DrawImage(img,3*size,(96-size)/2)
 
DO UNTIL CH#$FF OD
CH=$FF
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Flood_fill.png Screenshot from Atari 8-bit computer]
=={{header|Ada}}==
<langsyntaxhighlight lang="ada">procedure Flood_Fill
( Picture : in out Image;
From : Point;
Line 115 ⟶ 290:
Column (From);
end if;
end Flood_Fill;</langsyntaxhighlight>
The procedure has the following parameters. ''Picture'' is the image to change. ''From'' is the point to start at. ''Fill'' is the color to fill with. ''Replace'' is the color to replace. ''Distance'' defines the range of color around ''Replace'' to replace as well. The distance is defined as a maximum of the differences of stimuli. The following code snippet reads the test file, fills the area between two circles red, and writes the result:
<langsyntaxhighlight lang="ada">declare
File : File_Type;
begin
Line 135 ⟶ 310:
Close (File);
end;
end;</langsyntaxhighlight>
=={{header|Applesoft BASIC}}==
 
<syntaxhighlight lang="gwbasic"> 100 GR:GOSUB 330"DRAW THE DEATH STAR"
110 COLOR= 12
120 X = 20:Y = 30: GOSUB 140"FLOOD FILL"
130 END
140 C = SCRN( X,Y)
150 X(S) = X:Y(S) = Y:S = S + 1
160 FOR S = 0 TO 0 STEP - 1
170 X = X(S):Y = Y(S)
180 LX = X
190 IF SCRN( LX - 1,Y) = C THEN PLOT LX - 1,Y:LX = LX - 1: GOTO 190
200 IF SCRN( X,Y) = C THEN PLOT X,Y:X = X + 1: GOTO 200
210 X1 = LX:X2 = X - 1:YP = Y + 1: GOSUB 250"SCAN"
220 X1 = LX:X2 = X - 1:YP = Y - 1: GOSUB 250"SCAN"
230 NEXT S
240 RETURN
250 TRUE = NOT FALSE
260 ADDED = FALSE
270 FOR XP = X1 TO X2:
280 INSIDE = SCRN( XP,YP) = C
290 IF NOT INSIDE THEN ADDED = FALSE
300 IF INSIDE AND NOT ADDED THEN X(S) = XP:Y(S) = YP:S = S + 1:ADDED = TRUE
310 NEXT XP
320 RETURN
330 COLOR= 15: CX = 20:CY = 20:R = 18: GOSUB 350"CIRCLE"
340 COLOR= 0: CX = 15:CY = 15:R = 6
350 F = 1 - R:X = 0:Y = R:DX = 0:DY = - 2 * R:PLOT CX,CY + R:PLOT CX,CY - R:HLIN CX - R,CX + R AT CY: IF X > = Y THEN RETURN
360 FOR I = 0 TO 1:IF F > = 0 THEN Y = Y - 1:DY = DY + 2:F = F + DY
370 X = X + 1:DX = DX + 2:F = F + DX + 1:HLIN CX - X,CX + X AT CY + Y:HLIN CX - X,CX + X AT CY - Y:HLIN CX - Y,CX + Y AT CY + X:HLIN CX - Y,CX + Y AT CY - X: I = X > = Y : NEXT I : RETURN</syntaxhighlight>
=={{header|AutoHotkey}}==
* <code>x</code>, <code>y</code> are the initial coords (relative to screen unless the <code>relative</code> parameter is true).
Line 146 ⟶ 349:
=== Recursive ===
This is limited to %StackSize% pixels.
<langsyntaxhighlight AutoHotkeylang="autohotkey">SetBatchLines, -1
CoordMode, Mouse
CoordMode, Pixel
Line 186 ⟶ 389:
FloodFill(x-1, y-1, target, replacement, key)
}
}</langsyntaxhighlight>
 
=== Iterative ===
<langsyntaxhighlight AutoHotkeylang="autohotkey">#NoEnv
#SingleInstance, Force
 
Line 243 ⟶ 446:
DllCall("ReleaseDC", UInt, 0, UInt, hDC)
DllCall("DeleteObject", UInt, hBrush)
}</langsyntaxhighlight>
 
=={{header|BBC BASIC}}==
BBC BASIC has a built-in flood fill statement, but to satisfy the terms of the task it is not used in this example.
<langsyntaxhighlight lang="bbcbasic"> MODE 8
GCOL 15
CIRCLE FILL 640, 512, 500
Line 270 ⟶ 472:
PROCflood(X%, Y%-2, C%)
NEXT
ENDPROC</langsyntaxhighlight>
 
=={{header|C}}==
===Simple and complete example in C89===
<syntaxhighlight lang="c">/*
<lang C>/*
* RosettaCode: Bitmap/Flood fill, language C, dialects C89, C99, C11.
*
Line 380 ⟶ 581:
writePortableBitMap(stdout);
return EXIT_SUCCESS;
}</langsyntaxhighlight>
 
===Second example ===
<syntaxhighlight lang="c">
<lang c>
// http://commons.wikimedia.org/wiki/File:Julia_immediate_basin_1_3.png
 
Line 491 ⟶ 692:
}
</syntaxhighlight>
</lang>
 
===Third example===
Line 498 ⟶ 699:
The <code>sys/queue.h</code> is not POSIX. (See [[FIFO#C|FIFO]])
 
<langsyntaxhighlight lang="c">/* #include <sys/queue.h> */
typedef struct {
color_component red, green, blue;
Line 506 ⟶ 707:
void floodfill(image img, int px, int py,
rgb_color_p bankscolor,
rgb_color_p rcolor);</langsyntaxhighlight>
 
<langsyntaxhighlight lang="c">#include "imglib.h"
 
typedef struct _ffill_node {
Line 600 ⟶ 801:
}
return pixelcount;
}</langsyntaxhighlight>
 
The '''pixelcount''' could be used to know the area of the filled region. The ''internal'' parameter <code>tolerance</code> can be tuned to cope with antialiasing, bringing "sharper" resuts.
Line 608 ⟶ 809:
(Comments show changes to fill the white area instead of the black circle)
 
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <stdlib.h>
#include "imglib.h"
Line 634 ⟶ 835:
}
return 0;
}</langsyntaxhighlight>
 
=={{header|C sharp|C#}}==
{{works with|C#|3.0}}
Line 642 ⟶ 842:
This implementation matches exact colours only. Since the example image has grey pixels around the edges of the circles, these will remain grey after the interiors are filled.
 
<langsyntaxhighlight lang="csharp">
using System;
using System.Collections.Generic;
Line 696 ⟶ 896:
}
}
</syntaxhighlight>
</lang>
 
=={{header|C++}}==
{{libheader|OpenCV}}
Line 704 ⟶ 903:
 
'''Interface'''
<langsyntaxhighlight lang="cpp">#ifndef PROCESSING_FLOODFILLALGORITHM_H_
#define PROCESSING_FLOODFILLALGORITHM_H_
 
Line 731 ⟶ 930:
 
#endif /* PROCESSING_FLOODFILLALGORITHM_H_ */
</syntaxhighlight>
</lang>
'''Implementation'''
<langsyntaxhighlight lang="cpp">#include "FloodFillAlgorithm.h"
 
FloodFillAlgorithm::~FloodFillAlgorithm() {
Line 777 ⟶ 976:
}
 
</syntaxhighlight>
</lang>
 
=={{header|D}}==
This version uses the bitmap module from the Bitmap Task, matches exact colours only, and is derived from the Go version (to avoid stack overflow because unlike Go the D stack is not segmented).
 
<langsyntaxhighlight lang="d">import std.array, bitmap;
 
void floodFill(Color)(Image!Color img, in uint x, in uint y,
Line 810 ⟶ 1,008:
img.floodFill(200, 200, RGB(127, 0, 0));
img.savePPM6("unfilled_circ_flooded.ppm");
}</langsyntaxhighlight>
=={{header|Delphi}}==
See [[#Pascal]].
Line 817 ⟶ 1,015:
Using the image type from [[Basic bitmap storage#E]].
 
<langsyntaxhighlight lang="e">def floodFill(image, x, y, newColor) {
def matchColor := image[x, y]
def w := image.width()
Line 885 ⟶ 1,083:
 
fillScan(x, y)
}</langsyntaxhighlight>
 
[[File:Filledcirc-E.png|128px|thumb|right|Filled sample image]]Note that this does not make any attempt to smoothly fill 'banks' or have a tolerance; it matches exact colors only. This will fill the example image with red inside green, and there will be black/white fringes:
 
<syntaxhighlight lang="e">{
<lang e>{
println("Read")
def i := readPPM(<import:java.io.makeFileInputStream>(<file:Unfilledcirc.ppm>))
Line 899 ⟶ 1,097:
i.writePPM(<import:java.io.makeFileOutputStream>(<file:Filledcirc.ppm>))
println("Done")
}</langsyntaxhighlight>
 
=={{header|ERRE}}==
In "PC.LIB" library there is a FILL procedure that do the job, but the example program implements the algorithm in ERRE language using an iterative method. This program is taken from the distribution disk and works in 320x200 graphics.
<syntaxhighlight lang="erre">
<lang ERRE>
PROGRAM MYFILL_DEMO
 
Line 991 ⟶ 1,188:
FLOOD_FILL(100,100,0,1)
END PROGRAM
</syntaxhighlight>
</lang>
Note: I haven't an "Upload files" item, so I can't show the resulting image!
 
=={{header|Euler Math Toolbox}}==
 
Using an emulated stack. EMT's recursive stack space is limited. For the notebook with images see [http://www.euler-math-toolbox.de/renegrothmann/Flood%20Fill.html this page].
 
<syntaxhighlight lang="text">
>file="test.png";
>A=loadrgb(file); ...
Line 1,035 ⟶ 1,231:
>B=floodfill(B,200,200,rgb(0,0,0.5),0.5);
>insrgb(B);
</syntaxhighlight>
</lang>
 
=={{header|FBSL}}==
'''Using pure FBSL's built-in graphics functions:'''
<langsyntaxhighlight lang="qbasic">#DEFINE WM_LBUTTONDOWN 513
#DEFINE WM_CLOSE 16
 
Line 1,075 ⟶ 1,270:
CIRCLE(FBSL.GETDC, Breadth / 2, Height / 2, 85, &HFFFFFF, 0, 360, 1, TRUE) _ ' White
(FBSL.GETDC, Breadth / 3, Height / 3, 30, 0, 0, 360, 1, TRUE) ' Black
END SUB</langsyntaxhighlight>
'''Output:''' [[File:FBSLFlood.PNG]]
 
=={{header|Forth}}==
This simple recursive algorithm uses routines from [[Basic bitmap storage]].
<langsyntaxhighlight lang="forth">: third 2 pick ;
: 3dup third third third ;
: 4dup 2over 2over ;
Line 1,107 ⟶ 1,301:
swap 1- swap
then
r> drop ;</langsyntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
Line 1,114 ⟶ 1,307:
Here the ''target color'' paradigm is used. Again the <code>matchdistance</code> parameter can be tuned to ignore small differences that could come because of antialiasing.
 
<langsyntaxhighlight lang="fortran">module RCImageArea
use RCImageBasic
use RCImagePrimitive
Line 1,219 ⟶ 1,412:
end subroutine floodfill
 
end module RCImageArea</langsyntaxhighlight>
 
Usage example excerpt (which on the test image will fill with green the inner black circle):
 
<langsyntaxhighlight lang="fortran"> call floodfill(animage, point(100,100), rgb(0,0,0), rgb(0,255,0))</langsyntaxhighlight>
 
=={{header|FreeBASIC}}==
{{trans|BBC BASIC}}
<langsyntaxhighlight lang="freebasic">' version 04-11-2016
' compile with: fbc -s console
 
Line 1,281 ⟶ 1,473:
Sleep 2000
If InKey <> "" OrElse InKey = Chr(255) + "k" Then End
Loop</langsyntaxhighlight>
 
=={{header|Go}}==
An addition to code from the bitmap task:
<langsyntaxhighlight lang="go">package raster
 
func (b *Bitmap) Flood(x, y int, repl Pixel) {
Line 1,301 ⟶ 1,492:
}
ff(x, y)
}</langsyntaxhighlight>
And a test program. Works with code from read ppm and write ppm to pipe tasks. For input, it uses a version of the test file converted by the Go solution to "Read an image through a pipe". For output it uses the trick from "PPM conversion through a pipe" to write the .png suitable for uploading to RC.
[[File:Go_flood.png|right]]
<langsyntaxhighlight lang="go">package main
 
import (
Line 1,332 ⟶ 1,523:
log.Fatal(err)
}
}</langsyntaxhighlight>
 
=={{header|Haskell}}==
This code uses the Bitmap and Bitmap.RGB modules defined [[Bitmap#Haskell|here]].
<langsyntaxhighlight Haskelllang="haskell">import Data.Array.ST
import Data.STRef
import Control.Monad
Line 1,446 ⟶ 1,636:
setSpanRight p False
scanWhileX b st p oldC newC (w, h) (Pixel (x, y + 1))
</syntaxhighlight>
</lang>
 
=={{header|HicEst}}==
HicEst color fill is via the [http://www.HicEst.com/DeCoRation.htm decoration option of WRITE()]
<langsyntaxhighlight HicEstlang="hicest">WINDOW(WINdowhandle=wh, BaCkcolor=0, TItle="Rosetta test image")
 
WRITE(WIN=wh, DeCoRation="EL=14, BC=14") ! color 14 == bright yellow
Line 1,457 ⟶ 1,646:
WRITE(WIN=wh, DeCoRation="L=1/4, R=1/2, T=1/4, B=1/2, EL=25, BC=25")
 
WINDOW(Kill=wh)</langsyntaxhighlight>
 
=={{header|J}}==
'''Solution:'''<br>
Uses <code>getPixels</code> and <code>setPixels</code> from [[Basic bitmap storage#J|Basic bitmap storage]].
<langsyntaxhighlight lang="j">NB. finds and labels contiguous areas with the same numbers
NB. ref: http://www.jsoftware.com/pipermail/general/2005-August/023886.html
findcontig=: (|."1@|:@:>. (* * 1&(|.!.0)))^:4^:_@(* >:@i.@$)
Line 1,471 ⟶ 1,659:
NB.*floodFill v Floods area, defined by point and color (x), of image (y)
NB. x is: 2-item list of (y x) ; (color)
floodFill=: (1&({::)@[ ;~ 0&({::)@[ getFloodpoints ]) setPixels ]</langsyntaxhighlight>
 
'''Example Usage:'''<br>
The following draws the same image as for the [[Flood fill#Tcl|Tcl example image]] below.<br>
Uses definitions from [[Basic bitmap storage#J|Basic bitmap storage]], [[Bresenham's line algorithm#J|Bresenham's line algorithm]] and [[Midpoint circle algorithm#J|Midpoint circle algorithm]].
<langsyntaxhighlight lang="j">'white blue yellow black orange red'=: 255 255 255,0 0 255,255 255 0,0 0 0,255 165 0,:255 0 0
myimg=: white makeRGB 50 70
lines=: _2]\^:2 ] 0 0 25 0 , 25 0 25 35 , 25 35 0 35 , 0 35 0 0
Line 1,484 ⟶ 1,672:
myimg=: (5 34;orange) floodFill myimg
myimg=: (5 36;red) floodFill myimg
viewRGB myimg</langsyntaxhighlight>
 
'''Alternative findcontig:'''<br>
The following alternative version of <code>findcontig</code> is less concise but is leaner, faster, works for n-dimensions and is not restricted to numerical arrays.
<langsyntaxhighlight lang="j">NB. ref: http://www.jsoftware.com/pipermail/general/2005-August/024174.html
eq=:[:}:"1 [:($$[:([:+/\1:,}:~:}.),) ,&_"1 NB. equal numbers for atoms of y connected in first direction
eq_nd=: i.@#@$(<"0@[([:, |:^:_1"0 _)&> [:EQ&.> <@|:"0 _)] NB. n-dimensional eq, gives an #@$,*/@$ shaped matrix
Line 1,494 ⟶ 1,682:
cnnct=: [: |:@({."1<.//.]) [: ; <@(,.<./)/.~
 
findcontig_nd=: 3 : '($y)${. ([:({.,~}:) ([ repl cnnct)/\.)^:([:+./@(~:/)2&{.)^:_ (,{.) eq_nd (i.~ ~.@,) y'</langsyntaxhighlight>
 
=={{header|Java}}==
Input is the image, the starting node (x, y), the target color we want to fill, and the replacement color that will replace the target color. It implements a 4-way flood fill algorithm. For large images, the performance can be improved by drawing the scanlines instead of setting each pixel to the replacement color, or by working directly on the databuffer.
<langsyntaxhighlight lang="java">import java.awt.Color;
import java.awt.Point;
import java.awt.image.BufferedImage;
Line 1,539 ⟶ 1,726:
}
}
}</langsyntaxhighlight>
And here is an example of how to replace the white color with red from the sample image (with starting node (50, 50)):
<langsyntaxhighlight lang="java">import java.io.IOException;
import java.awt.Color;
import java.awt.Point;
Line 1,558 ⟶ 1,745:
new Test();
}
}</langsyntaxhighlight>
 
=={{header|Julia}}==
{{works with|Julia|0.6}}
Inspired to [[#Python | Python]] version.
 
<langsyntaxhighlight lang="julia">using Images, FileIO
 
function floodfill!(img::Matrix{<:Color}, initnode::CartesianIndex{2}, target::Color, replace::Color)
Line 1,609 ⟶ 1,795:
img = Gray{Bool}.(load("data/unfilledcircle.png"))
floodfill!(img, CartesianIndex(100, 100), Gray(false), Gray(true))
save("data/filledcircle.png", img)</langsyntaxhighlight>
 
=={{header|Kotlin}}==
{{trans|Java}}
<langsyntaxhighlight lang="scala">// version 1.1.4-3
 
import java.awt.Color
Line 1,672 ⟶ 1,857:
ImageIO.write(image, "png", File(title))
JOptionPane.showMessageDialog(null, JLabel(ImageIcon(image)), title, JOptionPane.PLAIN_MESSAGE)
}</langsyntaxhighlight>
 
=={{header|Liberty BASIC}}==
<langsyntaxhighlight lang="lb">'This example requires the Windows API
NoMainWin
WindowWidth = 267.5
Line 1,763 ⟶ 1,947:
result = FloodFill(mouseXX, (mouseYY - 1), targetColor)
End If
End Function</langsyntaxhighlight>
 
=={{header|Lingo}}==
Lingo has built-in flood fill for image objects, so a custom implementation would be pointless:
<langsyntaxhighlight lang="lingo">img.floodFill(x, y, rgb(r,g,b))</langsyntaxhighlight>
 
 
=={{header|Lua}}==
Uses Bitmap class [[Bitmap#Lua|here]], with an RGB tuple pixel representation, then extending..
 
Preprocess with ImageMagick to simplify loading:
<langsyntaxhighlight lang="lua">$ magick unfilledcirc.png -depth 8 unfilledcirc.ppm</langsyntaxhighlight>
Some rudimentary PPM support:
<langsyntaxhighlight lang="lua">function Bitmap:loadPPM(filename)
local fp = io.open( filename, "rb" )
if fp == nil then return false end
Line 1,801 ⟶ 1,982:
end
fp:close()
end</langsyntaxhighlight>
The task itself:
<langsyntaxhighlight lang="lua">function Bitmap:floodfill(x, y, c)
local b = self:get(x, y)
if not b then return end
Line 1,820 ⟶ 2,001:
end
ff(x, y)
end</langsyntaxhighlight>
Demo:
<langsyntaxhighlight lang="lua">bitmap = Bitmap(0, 0)
bitmap:loadPPM("unfilledcirc.ppm")
bitmap:floodfill( 1, 1, { 255,0,0 }) -- fill exterior (except bottom right) with red
bitmap:floodfill( 50, 50, { 0,255,0 })-- fill larger circle with green
bitmap:floodfill( 100, 100, { 0,0,255 })-- fill smaller circle with blue
bitmap:savePPM("filledcirc.ppm")</langsyntaxhighlight>
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">createMask[img_, pos_, tol_] :=
RegionBinarize[img, Image[SparseArray[pos -> 1, ImageDimensions[img]]], tol];
floodFill[img_Image, pos_List, tol_Real, color_List] :=
Line 1,838 ⟶ 2,018:
Dilation[createMask[img, pos, tol],1]
]
]</langsyntaxhighlight>
 
{{out}}
Line 1,844 ⟶ 2,024:
<pre>floodFill[Import["http://rosettacode.org/mw/images/0/0f/Unfilledcirc.png"], {100, 100}, 0.01, {1, 0, 0}]</pre>
 
=={{header|MiniScript}}==
This implementation is for use with [http://miniscript.org/MiniMicro Mini Micro]. The first parameter can be either a PixelDisplay or Image object. Flooding only occurs if the color as well as the opacity matches.
<syntaxhighlight lang="miniscript">
floodFill = function(bmp, x, y, targetColor, replacementColor)
// Check if pixel is outside the bounds
if not(0 < x < bmp.width) or not(0 < y < bmp.height) then return
// Check the current pixel color
currentColor = bmp.pixel(x, y)
if currentColor != targetColor then return
// Replace the color
bmp.setPixel x, y, replacementColor
// Recursively apply to adjacent pixels
floodFill(bmp, x + 1, y, targetColor, replacementColor)
floodFill(bmp, x - 1, y, targetColor, replacementColor)
floodFill(bmp, x, y + 1, targetColor, replacementColor)
floodFill(bmp, x, y - 1, targetColor, replacementColor)
end function
clear
img = file.loadImage("Unfilledcirc.png")
gfx.drawImage img, 0, 0
floodFill gfx, 50, 50, "#FFFFFFFF", "#00FFFFFF"
floodFill gfx, 100, 125, "#000000FF", "#0000FFFF"
</syntaxhighlight>
 
=={{header|Nim}}==
{{Trans|Python}}
<syntaxhighlight lang="nim">import bitmap
 
proc floodFill*(img: Image; initPoint: Point; targetColor, replaceColor: Color) =
 
var stack: seq[Point]
let width = img.w
let height = img.h
 
if img[initPoint.x, initPoint.y] != targetColor:
return
 
stack.add(initPoint)
 
while stack.len > 0:
var w, e: Point
let pt = stack.pop()
if img[pt.x, pt.y] == targetColor:
w = pt
e = if pt.x + 1 < width: (pt.x + 1, pt.y) else: pt
else:
continue # Already processed.
 
# Move west until color of node does not match "targetColor".
while w.x >= 0 and img[w.x, w.y] == targetColor:
img[w.x, w.y] = replaceColor
if w.y + 1 < height and img[w.x, w.y + 1] == targetColor:
stack.add((w.x, w.y + 1))
if w.y - 1 >= 0 and img[w.x, w.y - 1] == targetColor:
stack.add((w.x, w.y - 1))
dec w.x
 
# Move east until color of node does not match "targetColor".
while e.x < width and img[e.x, e.y] == targetColor:
img[e.x, e.y] = replaceColor
if e.y + 1 < height and img[e.x, e.y + 1] == targetColor:
stack.add((e.x, e.y + 1))
if e.y - 1 >= 0 and img[e.x, e.y - 1] == targetColor:
stack.add((e.x, e.y - 1))
inc e.x
 
#———————————————————————————————————————————————————————————————————————————————————————————————————
 
when isMainModule:
 
import ppm_read, ppm_write
 
var img = readPPM("Unfilledcirc.ppm")
img.floodFill((30, 122), White, color(255, 0, 0))
img.writePPM("Unfilledcirc_red.ppm")</syntaxhighlight>
=={{header|OCaml}}==
{{Trans|C}}
<syntaxhighlight lang="ocaml">
let floodFill ~img (i, j) newColor =
let oldColor = get_pixel ~img ~pt:(i, j) in
let width, height = get_dims ~img in
 
let rec aux (i, j) =
if 0 <= i && i < height
&& 0 <= j && j < width
&& (get_pixel ~img ~pt:(i, j)) = oldColor
then begin
put_pixel img newColor i j;
aux (i-1, j);
aux (i+1, j);
aux (i, j-1);
aux (i, j+1);
end;
in
aux (i, j)</syntaxhighlight>
=={{header|Pascal}}==
{{trans|C#}}
<syntaxhighlight lang="pascal">
<lang Pascal>
 
program FloodFillTest;
Line 1,917 ⟶ 2,194:
 
end.
</syntaxhighlight>
</lang>
 
=={{header|Perl}}==
 
Line 1,925 ⟶ 2,201:
The <tt>fill</tt> of the Perl package Image::Imlib2 is a flood fill (so the documentatin of Image::Imlib2 says). The target colour is the one of the starting point pixel; the color set with <tt>set_color</tt> is the fill colour.
 
<langsyntaxhighlight lang="perl">#! /usr/bin/perl
 
use strict;
Line 1,934 ⟶ 2,210:
$img->fill(100,100);
$img->save("filledcirc.jpg");
exit 0;</langsyntaxhighlight>
 
A homemade implementation can be:
 
<langsyntaxhighlight lang="perl">use strict;
use Image::Imlib2;
 
Line 1,985 ⟶ 2,261:
floodfill($img, 100,100, 0, 0, 0);
$img->save("filledcirc1.jpg");
exit 0;</langsyntaxhighlight>
 
This fills better than the Image::Imlib2 <tt>fill</tt> function the inner circle, since because of JPG compression and thanks to the <tt>$distparameter</tt>, it "sees" as black also pixel that are no more exactly black.
 
=={{header|Phix}}==
{{Trans|Go}}
Requires read_ppm() from [[Bitmap/Read_a_PPM_file#Phix|Read_a_PPM_fileRead a PPM file]], write_ppm() from [[Bitmap/Write_a_PPM_file#Phix|Write_a_PPM_fileWrite a PPM file]]. <br>
Uses the output of Bitmap_Circle.exw[[Bitmap/Midpoint_circle_algorithm#Phix|Midpoint circle algorithm]] (Circle.ppm), results may be verified with demo\rosetta\viewppm.exw
Working<syntaxhighlight program islang="phix">-- demo\rosetta\Bitmap_FloodFill.exw, results may(runnable be verified with demo\rosetta\viewppm.exwversion)
include ppm.e -- blue, green, read_ppm(), write_ppm() (covers above requirements)
<lang Phix>function ff(sequence img, integer x, integer y, integer colour, integer target)
 
if x>=1 and x<=length(img)
function ff(sequence img, integer x, y, colour, target)
if x>=1 and x<=length(img)
and y>=1 and y<=length(img[x])
and img[x][y]=target then
Line 2,007 ⟶ 2,284:
end function
 
function FloodFill(sequence img, integer x, integer y, integer colour)
integer target = img[x][y]
return ff(img,x,y,colour,target)
end function
 
sequence img = read_ppm("Circle.ppm")
img = FloodFill(img, 200, 100, blue)
write_ppm("FloodIn.ppm",img)
img = FloodFill(img, 10, 10, green)
write_ppm("FloodOut.ppm",img)</langsyntaxhighlight>
 
=={{header|PicoLisp}}==
Using the format of [[Bitmap#PicoLisp|Bitmap]], a minimal recursive solution:
<langsyntaxhighlight PicoLisplang="picolisp">(de ppmFloodFill (Ppm X Y Color)
(let Target (get Ppm Y X)
(recur (X Y)
Line 2,029 ⟶ 2,305:
(recurse X (dec Y))
(recurse X (inc Y)) ) ) )
Ppm )</langsyntaxhighlight>
Test using 'ppmRead' from [[Bitmap/Read a PPM file#PicoLisp]] and 'ppmWrite' from [[Bitmap/Write a PPM file#PicoLisp]], filling the white area with red:
<pre>(ppmWrite
(ppmFloodFill (ppmRead "Unfilledcirc.ppm") 192 128 (255 0 0))
"Filledcirc.ppm" )</pre>
 
=={{header|PL/I}}==
<langsyntaxhighlight PLlang="pl/Ii">fill: procedure (x, y, fill_color) recursive; /* 12 May 2010 */
declare (x, y) fixed binary;
declare fill_color bit (24) aligned;
Line 2,061 ⟶ 2,336:
if pixel_color = area_color then call fill (x, y+1, fill_color);
 
end fill;</langsyntaxhighlight>
The following PL/I statements change the color of the white area
of the sample image to red, and the central orb to green.
<syntaxhighlight lang="text">
/* Fill the white area of the suggested image with red color. */
area_color = (24)'1'b;
Line 2,072 ⟶ 2,347:
area_color = '0'b;
call fill (125, 125, '000000001111111100000000'b );
</syntaxhighlight>
</lang>
 
=={{header|Processing}}==
<langsyntaxhighlight lang="java">import java.awt.Point;
import java.util.Queue;
import java.util.LinkedList;
Line 2,154 ⟶ 2,428:
img.pixels[pixel_position(x, y)] = fill_color;
return true;
}</langsyntaxhighlight>
 
==={{header|Processing Python mode}}===
<langsyntaxhighlight Pythonlang="python">from collections import deque
 
image_file = "image.png"
fill_color = color(250, 0, 0)
tolerance = 15
Line 2,166 ⟶ 2,441:
global img
size(600, 400)
img = loadImage("image.png"image_file)
fill(0, 0, 100)
image(img, 0, 0, width, height)
textSize(18)
show()
def show():
image(img, 0, 0, width, height)
text("Tolerance = {} (Use mouse wheel to change)".format(tolerance),
100, height - 30)
text("Right click to reset", 100, height - 10)
 
def draw():
global allowed
if allowed:
imageshow(img, 0, 0, width, height)
text("Tolerance = {} (Use mouse wheel to change)".format(
tolerance), 100, height - 30)
text("Right click to reset", 100, height - 10)
allowed = False
 
Line 2,186 ⟶ 2,461:
global allowed, img
if mouseButton == RIGHT:
img = loadImage("image.png"image_file)
else:
img.loadPixels()
Line 2,229 ⟶ 2,504:
return False
img.pixels[pixel_position(x, y)] = fill_color
return True</langsyntaxhighlight>
 
=={{header|PureBasic}}==
=== built-in ===
<langsyntaxhighlight PureBasiclang="purebasic">FillArea(0,0,-1,$ff)
; Fills an Area in red</langsyntaxhighlight>
 
=== Iterative ===
<langsyntaxhighlight PureBasiclang="purebasic"> Procedure Floodfill(x,y,new_color)
old_color = Point(x,y)
NewList stack.POINT()
Line 2,266 ⟶ 2,540:
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
EndIf</langsyntaxhighlight>
 
=={{header|Python}}==
<langsyntaxhighlight lang="python">
import Image
def FloodFill( fileName, initNode, targetColor, replaceColor ):
Line 2,314 ⟶ 2,587:
break
return img
</syntaxhighlight>
</lang>
 
===Usage example===
<langsyntaxhighlight lang="python">
# "FloodFillClean.png" is name of input file
# [55,55] the x,y coordinate where fill starts
Line 2,325 ⟶ 2,598:
#The resulting image is saved as Filled.png
img.save( "Filled.png" )
</syntaxhighlight>
</lang>
 
=={{header|R}}==
'''Stack-based recursive version'''
<syntaxhighlight lang="r">
<lang R>
library(png)
img <- readPNG("Unfilledcirc.png")
Line 2,353 ⟶ 2,625:
 
image(M, col = c(1, 0, 2))
</syntaxhighlight>
</lang>
'''Queue-based version (Forest Fire algorithm)'''
<syntaxhighlight lang="r">
<lang R>
library(png)
img <- readPNG("Unfilledcirc.png")
Line 2,393 ⟶ 2,665:
 
image(M, col = c(1, 0, 2, 3))
</syntaxhighlight>
</lang>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
 
Line 2,479 ⟶ 2,750:
;; ... and after:
bm
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
Line 2,486 ⟶ 2,756:
Using bits and pieces from various other bitmap tasks.
 
<syntaxhighlight lang="raku" perl6line>class Pixel { has Int ($.R, $.G, $.B) }
class Bitmap {
has Int ($.width, $.height);
Line 2,558 ⟶ 2,828:
 
$outfile.write: $b.P6;
</syntaxhighlight>
</lang>
 
See output image [https://github.com/thundergnat/rc/blob/master/img/Bitmap-flood-perl6.png Bitmap-flood-perl6 ] (offsite image file, converted to PNG for ease of viewing)
 
=={{header|REXX}}==
{{trans|PL/I}}
<langsyntaxhighlight lang="rexx">/*REXX program demonstrates a method to perform a flood fill of an area. */
black= '000000000000000000000000'b /*define the black color (using bits).*/
red = '000000000000000011111111'b /* " " red " " " */
Line 2,588 ⟶ 2,857:
return
/*──────────────────────────────────────────────────────────────────────────────────────*/
@: parse arg $x,$y; return image.$x.$y /*return with color of the X,Y pixel.*/</langsyntaxhighlight>
<br><br>
 
=={{header|Ruby}}==
 
Uses [[Raster graphics operations/Ruby]]
 
<langsyntaxhighlight lang="ruby"># frozen_string_literal: true
 
require_relative 'raster_graphics'
 
class RGBColour
def ==(a_colourother)
values == a_colourother.values
end
end
Line 2,609 ⟶ 2,877:
current_colour = self[pixel.x, pixel.y]
queue = Queue.new
queue.enqueueenq(pixel)
until queue.empty?
p = queue.dequeuepop
next unless self[p.x, p.y] == current_colour
 
Line 2,621 ⟶ 2,889:
%i[north south].each do |direction|
n = neighbour(q, direction)
queue.enqueueenq(n) if self[n.x, n.y] == current_colour
end
q = neighbour(q, :east)
Line 2,651 ⟶ 2,919:
bitmap.draw_circle(Pixel[200, 100], 40, RGBColour::BLACK)
bitmap.flood_fill(Pixel[140, 160], RGBColour::BLUE)
bitmap.save_as_png('flood_fill.png')</langsyntaxhighlight>
 
{{libheader|RubyGems}}
Line 2,657 ⟶ 2,925:
JRubyArt is a port of Processing to the ruby language
 
<syntaxhighlight lang="ruby"># holder for pixel coords
<lang ruby>
# holder for pixel coords
Pixel = Struct.new(:x, :y)
 
Line 2,710 ⟶ 2,977:
size(256, 256)
end
</syntaxhighlight>
</lang>
 
=={{header|Rust}}==
 
<langsyntaxhighlight lang="rust">
/* Naive Rust implementation of RosettaCode's Bitmap/Flood fill excercise.
*
Line 2,802 ⟶ 3,068:
write_image(data);
 
}</langsyntaxhighlight>
 
=={{header|Scala}}==
 
Line 2,810 ⟶ 3,075:
See [[Basic_bitmap_storage#Scala|Basic Bitmap Storage]] for RgbBitmap class.
 
<langsyntaxhighlight lang="scala">import java.awt.Color
import scala.collection.mutable
 
Line 2,852 ⟶ 3,117:
}
}
}</langsyntaxhighlight>
 
=={{header|Standard ML}}==
This implementation is imperative, updating the pixels of the image as it goes.
Line 2,859 ⟶ 3,123:
data structures instead.
 
<langsyntaxhighlight lang="sml">(* For simplicity, we're going to fill black-and-white images. Nothing
* fundamental would change if we used more colors. *)
datatype color = Black | White
Line 2,907 ⟶ 3,171:
 
(* Fill the image with black starting at the center. *)
val () = fill test Black (3,3)</langsyntaxhighlight>
 
=={{header|Tcl}}==
{{libheader|Tk}}
{{tcllib|struct::queue}}
Using code from [[Basic bitmap storage#Tcl|Basic bitmap storage]], [[Bresenham's line algorithm#Tcl|Bresenham's line algorithm]] and [[Midpoint circle algorithm#Tcl|Midpoint circle algorithm]]
<langsyntaxhighlight lang="tcl">package require Tcl 8.5
package require Tk
package require struct::queue
Line 2,986 ⟶ 3,249:
toplevel .flood
label .flood.l -image $img
pack .flood.l</langsyntaxhighlight>
Results in:
 
[[Image:Tcl_flood_fill.png]]
=={{header|Wren}}==
{{libheader|DOME}}
This script uses the same 'flood fill' routine as the Go entry.
 
It draws 3 concentric squares on the canvas colored yellow, red and white.
 
When the up arrow is pressed, the red square changes to blue and when the down arrow is pressed the blue square turns back to red.
<syntaxhighlight lang="wren">import "graphics" for Canvas, ImageData, Color
import "dome" for Window
import "input" for Keyboard
 
class Bitmap {
construct new(name, size) {
Window.title = name
Window.resize(size, size)
Canvas.resize(size, size)
size = size / 2
_bmp = ImageData.create(name, size, size)
_size = size
_flooded = false
}
 
init() {
var s = _size
var hs = s / 2
var qs = s / 4
fill(0, 0, s, s, Color.yellow)
fill(qs, qs, 3 * qs, 3 * qs, Color.red)
fill(qs * 1.5, qs * 1.5, qs * 2.5, qs * 2.5, Color.white)
_bmp.draw(hs, hs)
}
 
fill(s, t, w, h, col) {
for (x in s...w) {
for (y in t...h) pset(x, y, col)
}
}
 
flood(x, y, repl) {
var target = pget(x, y)
var ff // recursive closure
ff = Fn.new { |x, y|
if (x >= 0 && x < _bmp.width && y >= 0 && y < _bmp.height) {
var p = pget(x, y)
if (p.r == target.r && p.g == target.g && p.b == target.b) {
pset(x, y, repl)
ff.call(x-1, y)
ff.call(x+1, y)
ff.call(x, y-1)
ff.call(x, y+1)
}
}
}
ff.call(x, y)
}
 
pset(x, y, col) { _bmp.pset(x, y, col) }
 
pget(x, y) { _bmp.pget(x, y) }
 
update() {
var hs = _size / 2
var qs = _size / 4
if (!_flooded && Keyboard.isKeyDown("up")) {
flood(qs, qs, Color.blue)
_bmp.draw(hs, hs)
_flooded = true
} else if (_flooded && Keyboard.isKeyDown("down")) {
flood(qs, qs, Color.red)
_bmp.draw(hs, hs)
_flooded = false
}
}
 
draw(alpha) {}
}
 
var Game = Bitmap.new("Bitmap - flood fill", 600)</syntaxhighlight>
 
=={{header|XPL0}}==
[[File:FloodXPL0.gif|right|Output]]
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes;
 
proc Flood(X, Y, C, C0); \Fill an area of color C0 with color C
Line 3,052 ⟶ 3,393:
if ChIn(1) then []; \wait for keystroke
SetVid(3); \restore normal text mode
]</langsyntaxhighlight>
 
=={{header|zkl}}==
[[file:Flood_before.zkl.jpg|right]][[file:Flood.zkl.jpg|right]]
Line 3,059 ⟶ 3,399:
Uses the PPM class from http://rosettacode.org/wiki/Bitmap/Bresenham%27s_line_algorithm#zkl
 
<langsyntaxhighlight lang="zkl">fcn flood(pixmap, x,y, repl){ // slow!
targ,h,w:=pixmap[x,y], pixmap.h,pixmap.w;
stack:=List(T(x,y));
Line 3,072 ⟶ 3,412:
}
}
}</langsyntaxhighlight>
<langsyntaxhighlight lang="zkl">pixmap:=PPM(250,302,0xFF|FF|FF);
pixmap.circle(101,200,100,0); pixmap.circle(75,100,25,0);
 
Line 3,080 ⟶ 3,420:
flood(pixmap, 75,100, 0x00|00|F0);
 
pixmap.writeJPGFile("flood.zkl.jpg");</langsyntaxhighlight>
 
{{omit from|AWK}}
{{omit from|Computer/zero Assembly|this language doesn't support video output and only has 32 bytes of RAM}}
{{omit from|Lotus 123 Macro Scripting}}
{{omit from|PARI/GP}}
Anonymous user