Welcome
Username or Email:

Password:


Missing Code




[ ]
[ ]
Online
  • Guests: 35
  • Members: 0
  • Newest Member: omjtest
  • Most ever online: 396
    Guests: 396, Members: 0 on 12 Jan : 12:51
Members Birthdays:
All today's birthdays', congrats!
Bead (41)
Fumeaux (25)


Next birthdays
04/26 Bead (41)
04/26 Fumeaux (25)
04/28 Steve Conner (46)
Contact
If you need assistance, please send an email to forum at 4hv dot org. To ensure your email is not marked as spam, please include the phrase "4hv help" in the subject line. You can also find assistance via IRC, at irc.shadowworld.net, room #hvcomm.
Support 4hv.org!
Donate:
4hv.org is hosted on a dedicated server. Unfortunately, this server costs and we rely on the help of site members to keep 4hv.org running. Please consider donating. We will place your name on the thanks list and you'll be helping to keep 4hv.org alive and free for everyone. Members whose names appear in red bold have donated recently. Green bold denotes those who have recently donated to keep the server carbon neutral.


Special Thanks To:
  • Aaron Holmes
  • Aaron Wheeler
  • Adam Horden
  • Alan Scrimgeour
  • Andre
  • Andrew Haynes
  • Anonymous000
  • asabase
  • Austin Weil
  • barney
  • Barry
  • Bert Hickman
  • Bill Kukowski
  • Blitzorn
  • Brandon Paradelas
  • Bruce Bowling
  • BubeeMike
  • Byong Park
  • Cesiumsponge
  • Chris F.
  • Chris Hooper
  • Corey Worthington
  • Derek Woodroffe
  • Dalus
  • Dan Strother
  • Daniel Davis
  • Daniel Uhrenholt
  • datasheetarchive
  • Dave Billington
  • Dave Marshall
  • David F.
  • Dennis Rogers
  • drelectrix
  • Dr. John Gudenas
  • Dr. Spark
  • E.TexasTesla
  • eastvoltresearch
  • Eirik Taylor
  • Erik Dyakov
  • Erlend^SE
  • Finn Hammer
  • Firebug24k
  • GalliumMan
  • Gary Peterson
  • George Slade
  • GhostNull
  • Gordon Mcknight
  • Graham Armitage
  • Grant
  • GreySoul
  • Henry H
  • IamSmooth
  • In memory of Leo Powning
  • Jacob Cash
  • James Howells
  • James Pawson
  • Jeff Greenfield
  • Jeff Thomas
  • Jesse Frost
  • Jim Mitchell
  • jlr134
  • Joe Mastroianni
  • John Forcina
  • John Oberg
  • John Willcutt
  • Jon Newcomb
  • klugesmith
  • Leslie Wright
  • Lutz Hoffman
  • Mads Barnkob
  • Martin King
  • Mats Karlsson
  • Matt Gibson
  • Matthew Guidry
  • mbd
  • Michael D'Angelo
  • Mikkel
  • mileswaldron
  • mister_rf
  • Neil Foster
  • Nick de Smith
  • Nick Soroka
  • nicklenorp
  • Nik
  • Norman Stanley
  • Patrick Coleman
  • Paul Brodie
  • Paul Jordan
  • Paul Montgomery
  • Ped
  • Peter Krogen
  • Peter Terren
  • PhilGood
  • Richard Feldman
  • Robert Bush
  • Royce Bailey
  • Scott Fusare
  • Scott Newman
  • smiffy
  • Stella
  • Steven Busic
  • Steve Conner
  • Steve Jones
  • Steve Ward
  • Sulaiman
  • Thomas Coyle
  • Thomas A. Wallace
  • Thomas W
  • Timo
  • Torch
  • Ulf Jonsson
  • vasil
  • Vaxian
  • vladi mazzilli
  • wastehl
  • Weston
  • William Kim
  • William N.
  • William Stehl
  • Wesley Venis
The aforementioned have contributed financially to the continuing triumph of 4hv.org. They are deserving of my most heartfelt thanks.
Forums
4hv.org :: Forums :: Computer Science
« Previous topic | Next topic »   

Floyd Steinberg Dithering 1 bit ...

1 2 
Move Thread LAN_403
Slava
Tue Mar 15 2016, 02:39AM Print
Slava Registered Member #518 Joined: Tue Feb 13 2007, 05:20AM
Location: New York
Posts: 168
I'm trying to make a dithering program that converts RGB image into 1 bit dithered image...

Here is where I got the algorithm...

Link2

My C# code...

I can't get it to work for some reason, can someone help me?

using System;
using System.Drawing;
using System.Drawing.Imaging;

namespace FloydSteinberg001
{
	class MainClass
	{
		public static void SetColor(Bitmap bmp1, int x,int y, int grey)
		{
			if (grey < 256) {
				bmp1.SetPixel (x, y, Color.FromArgb (grey, grey, grey));
			}
		}

		public static int GetColor(Bitmap bmp1, int x, int y)
		{
			Color colin = bmp1.GetPixel (x, y);
			return (colin.R + colin.G + colin.B) / 3;
		}


		public static void Main (string[] args)
		{
			string inputfile = @"/home/slava/Desktop/house001.JPG";
			string outputfile = @"/home/slava/Desktop/house002.BMP";

			Bitmap bmpin = new Bitmap (inputfile);
			Bitmap bmpout = new Bitmap (bmpin.Width,bmpin.Height);


			for (int y=1; y<bmpin.Height-1; y++) {
				for (int x=1; x<bmpin.Width-1; x++) {
					int old_pixel = GetColor (bmpin, x, y);
					int new_pixel = old_pixel / 2;
					SetColor (bmpin, x, y, new_pixel);
					int quant_error = old_pixel - new_pixel;

					SetColor (bmpout, x+1, y, GetColor (bmpin, x+1, y) + (int)(quant_error * 0.43750));
					SetColor (bmpout, x-1, y+1, GetColor (bmpin, x-1, y+1) + (int)(quant_error * 0.1875));
					SetColor (bmpout, x, y+1, GetColor (bmpin, x, y+1) + (int)(quant_error * 0.3125));
					SetColor (bmpout, x+1, y+1, GetColor (bmpin, x+1, y+1) + (int)(quant_error * 0.0625));



				}
			}

			bmpout.Save (outputfile, ImageFormat.Bmp);

			Console.WriteLine ("DONE!");
			Console.ReadLine ();

		}
	}
}
Back to top
Dr. Slack
Tue Mar 15 2016, 02:52AM
Dr. Slack Registered Member #72 Joined: Thu Feb 09 2006, 08:29AM
Location: UK St. Albans
Posts: 1659
so let's see how well it did then, post the piccies!
Back to top
Slava
Tue Mar 15 2016, 02:54AM
Slava Registered Member #518 Joined: Tue Feb 13 2007, 05:20AM
Location: New York
Posts: 168
I can't get it to work for some reason....
Back to top
Dr. Slack
Tue Mar 15 2016, 12:14PM
Dr. Slack Registered Member #72 Joined: Thu Feb 09 2006, 08:29AM
Location: UK St. Albans
Posts: 1659
Ah, didn't spot that. OK, make a 8x8 greyscale bitmap, run your code on it, and post that and the output as tables, see if we can see anything obvious.
Back to top
Bjørn
Tue Mar 15 2016, 02:23PM
Bjørn Registered Member #27 Joined: Fri Feb 03 2006, 02:20AM
Location: Hyperborea
Posts: 2058

I hacked it into working, your clipping in SetColor was not good and you did not diffuse the errors back into the bitmap. You should do this in a float array to avoid the rounding errors and speed it up.

using System;
using System.Drawing;
using System.Drawing.Imaging;

namespace FloydSteinberg001
{
    class MainClass
    {
        public static void SetColor(Bitmap bmp1, int x, int y, int grey)
        {
            grey = Math.Min(Math.Max(grey, 0), 255);
            bmp1.SetPixel(x, y, Color.FromArgb(grey, grey, grey));
        }

        public static int GetColor(Bitmap bmp1, int x, int y)
        {
            Color colin = bmp1.GetPixel(x, y);
            return (colin.R + colin.G + colin.B) / 3;
        }


        public static void Main(string[] args)
        {
            string inputfile = @"/home/slava/Desktop/house001.JPG";
            string outputfile = @"/home/slava/Desktop/house002.BMP";

            Bitmap bmpin = new Bitmap(inputfile);
            Bitmap bmpout = new Bitmap(bmpin.Width, bmpin.Height);


            for (int y = 1; y < bmpin.Height - 1; y++)
            {
                for (int x = 1; x < bmpin.Width - 1; x++)
                {
                    int old_pixel = GetColor(bmpin, x, y);

                    // Clip the pixel to 4 bit grayscale
                    int new_pixel = (int) (old_pixel & 0xf0) | (old_pixel >> 4);

                    SetColor(bmpin, x, y, (int) new_pixel);
                    int quant_error = old_pixel - new_pixel;

                    SetColor(bmpin, x + 1, y, GetColor(bmpin, x + 1, y) + (int)(quant_error * 0.43750));
                    SetColor(bmpin, x - 1, y + 1, GetColor(bmpin, x - 1, y + 1) + (int)(quant_error * 0.1875));
                    SetColor(bmpin, x, y + 1, GetColor(bmpin, x, y + 1) + (int)(quant_error * 0.3125));
                    SetColor(bmpin, x + 1, y + 1, GetColor(bmpin, x + 1, y + 1) + (int)(quant_error * 0.0625));
                }
            }

            bmpin.Save(outputfile, ImageFormat.Bmp);

            Console.WriteLine("DONE!");
            Console.ReadLine();

        }
    }
}
Back to top
Slava
Tue Mar 15 2016, 03:16PM
Slava Registered Member #518 Joined: Tue Feb 13 2007, 05:20AM
Location: New York
Posts: 168
I changed it to 2 bit, and my output is still grey scale...


using System; 
using System.Drawing; 
using System.Drawing.Imaging; 

namespace FloydSteinberg001 
{ 
	class MainClass 
	{ 
		public static void SetColor(Bitmap bmp1, int x, int y, int grey) 
		{ 
			grey = Math.Min(Math.Max(grey, 0), 255); 
			bmp1.SetPixel(x, y, Color.FromArgb(grey, grey, grey)); 
		} 

		public static int GetColor(Bitmap bmp1, int x, int y) 
		{ 
			Color colin = bmp1.GetPixel(x, y); 
			return (colin.R + colin.G + colin.B) / 3; 
		} 


		public static void Main(string[] args) 
		{ 
			string inputfile = @"/home/slava/Desktop/house001.JPG"; 
			string outputfile = @"/home/slava/Desktop/house002.BMP"; 

			Bitmap bmpin = new Bitmap(inputfile); 
			Bitmap bmpout = new Bitmap(bmpin.Width, bmpin.Height); 


			for (int y = 1; y < bmpin.Height - 1; y++) 
			{ 
				for (int x = 1; x < bmpin.Width - 1; x++) 
				{ 
					int old_pixel = GetColor(bmpin, x, y); 

					// Clip the pixel to 4 bit grayscale 
					int new_pixel = (int) (old_pixel & 0xf0) | (old_pixel >> 2); 

					SetColor(bmpin, x, y, (int) new_pixel); 
					int quant_error = old_pixel - new_pixel; 

					SetColor(bmpin, x + 1, y, GetColor(bmpin, x + 1, y) + (int)(quant_error * 0.43750)); 
					SetColor(bmpin, x - 1, y + 1, GetColor(bmpin, x - 1, y + 1) + (int)(quant_error * 0.1875)); 
					SetColor(bmpin, x, y + 1, GetColor(bmpin, x, y + 1) + (int)(quant_error * 0.3125)); 
					SetColor(bmpin, x + 1, y + 1, GetColor(bmpin, x + 1, y + 1) + (int)(quant_error * 0.0625)); 
				} 
			} 

			bmpin.Save(outputfile, ImageFormat.Bmp); 

			Console.WriteLine("DONE!"); 
			Console.ReadLine(); 

		} 
	} 
}
Back to top
Slava
Tue Mar 15 2016, 03:18PM
Slava Registered Member #518 Joined: Tue Feb 13 2007, 05:20AM
Location: New York
Posts: 168
I would like it to be 1 but black and white.
Back to top
Bjørn
Tue Mar 15 2016, 10:16PM
Bjørn Registered Member #27 Joined: Fri Feb 03 2006, 02:20AM
Location: Hyperborea
Posts: 2058
You have to mask away all the least significant bits that you don't want and fill them with copies of the remaining most significant bits.
To be left with only 1 bit you have to mask away the 7 least significant bits and copy the most significant bits into the blank bits.

int new_pixel = (int)(old_pixel & 0x80);
                    new_pixel |= new_pixel >> 1;
                    new_pixel |= new_pixel >> 2;
                    new_pixel |= new_pixel >> 4;

In C# you can do that simpler by

int new_pixel = old_pixel > 127 ? 255 : 0;
Back to top
Slava
Tue Mar 15 2016, 10:52PM
Slava Registered Member #518 Joined: Tue Feb 13 2007, 05:20AM
Location: New York
Posts: 168
I changed the code but now it gets stuck in an infinite loop...


using System; 
using System.Drawing; 
using System.Drawing.Imaging; 

namespace FloydSteinberg001 
{ 
	class MainClass 
	{ 
		public static void SetColor(Bitmap bmp1, int x, int y, int grey) 
		{ 
			grey = Math.Min(Math.Max(grey, 0), 255); 
			bmp1.SetPixel(x, y, Color.FromArgb(grey, grey, grey)); 
		} 

		public static int GetColor(Bitmap bmp1, int x, int y) 
		{ 
			Color colin = bmp1.GetPixel(x, y); 
			return (colin.R + colin.G + colin.B) / 3; 
		} 


		public static void Main(string[] args) 
		{ 
			string inputfile = @"C:\Users\Rostislav Persion\Desktop\radiowave0002.jpg"; 
			string outputfile = @"L:\me002.BMP"; 

			Bitmap bmpin = new Bitmap(inputfile); 
			Bitmap bmpout = new Bitmap(bmpin.Width, bmpin.Height); 


			for (int y = 1; y < bmpin.Height - 1; y++) 
			{ 
				for (int x = 1; x < bmpin.Width - 1; x++) 
				{ 
					int old_pixel = GetColor(bmpin, x, y); 

					// Clip the pixel to 4 bit grayscale 
					//int new_pixel = (int) (old_pixel & 0xf0) | (old_pixel >> 2); 
					int new_pixel = old_pixel > 127 ? 255 : 0; 

					SetColor(bmpin, x, y, (int) new_pixel); 
					int quant_error = old_pixel - new_pixel; 

					SetColor(bmpin, x + 1, y, GetColor(bmpin, x + 1, y) + (int)(quant_error * 0.43750)); 
					SetColor(bmpin, x - 1, y + 1, GetColor(bmpin, x - 1, y + 1) + (int)(quant_error * 0.1875)); 
					SetColor(bmpin, x, y + 1, GetColor(bmpin, x, y + 1) + (int)(quant_error * 0.3125)); 
					SetColor(bmpin, x + 1, y + 1, GetColor(bmpin, x + 1, y + 1) + (int)(quant_error * 0.0625)); 
				} 
			} 

			bmpin.Save(outputfile, ImageFormat.Bmp); 

			Console.WriteLine("DONE!"); 
			Console.ReadLine(); 

		} 
	} 
}
Back to top
Bjørn
Wed Mar 16 2016, 11:38AM
Bjørn Registered Member #27 Joined: Fri Feb 03 2006, 02:20AM
Location: Hyperborea
Posts: 2058
If I copy and paste the code it works fine, it takes about 10 seconds for a million pixels on my PC. So maybe you are not waiting long enough.
Back to top
1 2 

Moderator(s): Chris Russell, Noelle, Alex, Tesladownunder, Dave Marshall, Dave Billington, Bjørn, Steve Conner, Wolfram, Kizmo, Mads Barnkob

Go to:

Powered by e107 Forum System
 
Legal Information
This site is powered by e107, which is released under the GNU GPL License. All work on this site, except where otherwise noted, is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. By submitting any information to this site, you agree that anything submitted will be so licensed. Please read our Disclaimer and Policies page for information on your rights and responsibilities regarding this site.