Tool to convert an image into a binary of 0 and 1 (byte array format). A black and white picture/photo can be converted into 0 and 1 (0 for black and 1 for white)
Binary Image 0 1 - dCode
Tag(s) : Image Processing
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
A binary image is a digital image whose pixels have 2 distinct colors (usually black or white). It is therefore possible to represent a binary image as a series/array of 0 and 1 depending on the brightness of a pixel, which can facilitate its processing.
Read each pixel and if it is dark, convert it to 0, and if it is clear, convert it to 1 (or invert 1 and 0).
If the picture is not in black and white, it will be converted to grayscale according to the Rec. 601 luma (formula $ Y = 0.2989 R + 0.5870 G + 0.1140 B $ ) then binarized according to the selected threshold (generally 0.5 = 50%)
Example: Batman
11111111111111111111111111
11111100111111111100111111
11110001111100111110001111
11000001111000011110000011
10000000111000011100000001
10000000000000000000000001
00000000000000000000000000
00000000000000000000000000
10000000000000000000000001
10000110001000010001100001
11001111111100111111110011
11100111111100111111100111
11111111111111111111111111
Some people see it as a form of binary art: the pixel art.
Image binarization has many practical applications, especially in image processing:
— OCR (Optical Character Recognition), characters are often written in black on a white background, conversion to binary simplifies processing.
— Barcode reading: for the same reasons as OCR, barcode or QR code recognition is easier in black and white.
— Image display on LED panels or liquid crystal matrices.
— Edge detection: image processing software identifies and extracts the edges of objects in a binary image more easily.
— Motion detection: the same thing, but for videos, comparing binary images greatly accelerates calculation times for video surveillance.
All web image formats (JPG, PNG, GIF, etc.) are accepted, but it is preferable to use a format that uses lossless compression (PNG, BMP, etc.), because in these cases the data of each pixel color is not altered.
Many icons of 16x16, 32x32, 64x64 size make excellent formats.
Binarization is the action of binarizing (make binary with 2 elements) data.
From a practical point of view, an image with 2 colors (coded on 1 bit) is quick to store, each pixel is either 0 or 1.
There is no standard for 1-bit images, but generally 0 codes for black and 1 for white, but nothing prevents the use of 1 for black and 0 for white.
NB: An 8-bit image codes 0 for black and 255 for white.
The source code for image conversion to 0 and 1 could look like this code:// Pseudo-code
function convertToBinaryImage(imageData, threshold = 128) {
binaryImage = []
for each pixel in imageData {
grayscale = (pixel.R + pixel.G + pixel.B) / 3
if (grayscale >= threshold) binaryValue = 1
else binaryValue = 0
binaryImage []= binaryValue
}
return binaryImage
}
dCode retains ownership of the "Binary Image 0 1" source code. Except explicit open source licence (indicated Creative Commons / free), the "Binary Image 0 1" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Binary Image 0 1" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Binary Image 0 1" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.
The copy-paste of the page "Binary Image 0 1" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Binary Image 0 1 on dCode.fr [online website], retrieved on 2024-11-21,