Tagged Questions
The grayscale tag has no wiki summary.
10
votes
4answers
4k views
How can I convert an RGB image to grayscale but keep one color?
So I am trying to create an effect similar to Sin City or other movies where they remove all colors except one from an image.
I have an RGB image which I want to convert to grayscale but I want to ...
8
votes
5answers
4k views
C#, convert image to grayscale
Is there a way to convert an image to grayscale 16pixels per bit format, rather than setting each of the r,g and b components to luminance. I currently have a bmp from file.
Bitmap c = new ...
7
votes
3answers
516 views
Detecting grayscale images with .Net
I am scanning documents to JPG images. The scanner must scan all pages as color or all pages as black and white. Since many of my pages are color, I must scan all pages as color. After the scanning ...
6
votes
2answers
82 views
Determine if image is Grayscale or Color using JavaScript?
Is it possible to determine if a given image is grayscale or color using JavaScript?
6
votes
3answers
399 views
Convert raw grayscale binary to JPEG
I have C language source code, for an embedded system, containing arrays of data for an 8-bit per pixel grayscale image. I'm in charge of documenting the software and I'd like to convert this source ...
5
votes
1answer
122 views
MonoTouch convert color UIImage with alpha to grayscale and blur?
I am trying to find a recipe for producing a a blurred grayscale UIImage from a color PNG and alpha. There are recipes out there in ObjC but MonoTouch does not bind the CGRect functions so not sure ...
4
votes
6answers
370 views
Library for basic image manipulation in C++
I am looking for a great C++ library for doing basic image manipulation. What I need done is to be able to convert an image to grayscale and have access to read the pixels of the image.
I have looked ...
4
votes
2answers
2k views
Display image as grayscale using matplotlib
I'm trying to display a grayscale image using matplotlib.pyplot.imshow(). My problem is that the grayscale image is displayed as a colormap. I need the grayscale because I want to draw on top of the ...
4
votes
5answers
5k views
Convert a Bitmap to GrayScale in Android
I am new to this site, and I come with a question about Android.
Is there any way to convert a Bitmap to grayscale? I know how to draw a grayscale bitmap (using canvas operations: ...
4
votes
2answers
106 views
Choosing colors that convert nicely to greyscale
If I'm designing af tool that must "screenshot" well for printed documentation, can I easily choose colors that look different even when printed in greyscale?
EDIT: I was hoping for some easy-to-use ...
3
votes
2answers
80 views
Convert short[] into a grayscale image
I am writing a Buddhabrot fractal generator using aparapi. I got the OpenCL part of it to work, resulting in a single-dimension array that represents each pixel. I have the dimensions of the final ...
3
votes
2answers
195 views
How to convert bitmap to grayscale by pixel intensity using GDI?
I'm looking for the simple solution of how to convert the 32-bit bitmap to grayscale using GDI (not GDI+). Is there a possibility e.g. by changing the bitmap's pallete or something ?
Of course there ...
3
votes
1answer
176 views
(iphone) grayscaled image is too dark, can I change the opacity of gray scale image?
I use the following code to turn color image to grayscale image.
The resulting image is gray, but too dark.
Can I change the opacity of it? (not sure if the term "opacity" is the right word for it)
...
3
votes
1answer
435 views
Set individual pixels in .NET Format16bppGrayScale image
I'm trying to render a small Bitmap in memory with .NET that needs to be 16 bit Grayscale. The bitmap's format is set to PixelFormat.Format16bppGrayScale. However, Bitmap.SetPixel takes a Color ...
3
votes
2answers
540 views
Converting a number to a greyscale color in Java
I'm trying to figure out how I can convert a number between 1 and 50 to a greyscale color that could be used here:
g.setColor(MyGreyScaleColour);
1 would be lightest (white) and 50 would be darkest ...
3
votes
2answers
7k views
How to convert a grayscale matrix to an RGB matrix in MATLAB?
rgbImage = grayImage / max(max(grayImage));
or
rgbImage = grayImage / 255;
Which of the above is right,and reason?
3
votes
4answers
4k views
how to implement grayscale rendering in OpenGL?
When rendering a scene of textured polygons, I'd like to be able to switch between rendering in the original colors and a "grayscale" mode. I've been trying to achieve this using blending and color ...
3
votes
5answers
14k views
Convert grayscale value to RGB representation?
How can I convert a grayscale value (0-255) to an RGB value/representation?
It is for using in an SVG image, which doesn't seem to come with a grayscale support, only RGB...
Note: this is not RGB -> ...
3
votes
8answers
1k views
Find most readable colour of text that is drawn on a coloured surface
I'm not sure how to ask this but here goes.
I draw a filled coloured rectangle on screen. The colour is in form of R,G,B
I then want to draw text on top of the rectangle, however the colour of the ...
2
votes
1answer
309 views
android-opencv converting mat to grayscale with using matToBitmap/bitmapToMat
I am using newer opencv library of willowgarage in eclipse. And I want to convert a mat variable into grayscale, I've tried everything I found on the net but they didnt work for me.
Here is my code
...
2
votes
2answers
186 views
Android : Converting color image to grayscale
Hi guys I need your help, I'm trying to convert color image into grayscale using the average of red, green, blue. But it comes out with errors,
Here is my code
imgWidth = myBitmap.getWidth();
...
2
votes
1answer
134 views
Change ImageIcon being displayed in JFrame
I have here this code. I want it to first display an image file as input by the user when calling the main method, then apply changes to it. My first function is grayscale(). I have provided a ...
2
votes
1answer
165 views
BufferedImage - Gray Scale
Given an image that is in grayscale, how would I get the pixel values of the grayscale at that location?
This outputs temp as -16777216 (black) all the time.
public void testMethod()
{
int ...
2
votes
2answers
1k views
C# - Converting 8-bit or 16-bit grayscale raw pixel data
I need to be able to convert 8-bit or 16-bit grayscale pixel data into a file format that the .NET framework can support.
The data I have available is the width, height, orientation (bottom-left) and ...
2
votes
2answers
736 views
Convert a 2D array of int ranging from 0-256 into a grayscale png?
How can I convert a 2D array of ints into a grayscale png. right now I have this:
BufferedImage theImage = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
for(int y = 0; y<100; ...
2
votes
4answers
230 views
c# mat2gray (matlab) function
Anybody know of a image processing library for c# that has a function that works like the mat2gray function in matlab?
Thanks.
2
votes
1answer
545 views
Java BufferedImage Grayscale Degradation
I'm creating a simple program which accepts a gray scale image as an input and what I simply want to do is retrieve the color information of each pixel, store it in an array of objects I call ...
2
votes
2answers
372 views
How does one convert an image to grayscale in OpenGL?
This might seem like a simple question but Id like to know the fastest technique for converting an RGBA image to a grayscale image in OpenGL WITHOUT using GLSL. I.e. How do I take an RGBA texture and ...
2
votes
2answers
1k views
How to alpha mask a color
Working in Android (1.5), I have a hundred or so grayscale images in the form of byte arrays. I want to use the images as alpha masks for drawing solid colors in a Canvas. The images are fixed but the ...
2
votes
4answers
765 views
Java swing. How to change color intensity from black to white?
I don't see the how to change color only from black to white. Grayscale.
My example. I have values that goes from 0 to 100.
Their representation is like this:
0 - Black
100 - White
I am painting ...
2
votes
4answers
793 views
How to apply , converting image from colored to grayscale algorithm to android?
I am trying to use one of these algorithms to convert a RGB image to grayscale :
The lightness method averages the most prominent and least prominent colors:
(max(R, G, B) + min(R, G, B)) / 2.
...
2
votes
3answers
594 views
Is it possible to make a grayscale BMP file?
I am trying to make a program that outputs a 8-bit grayscale image to bmp file. I have found out that 8-bit BMP files are indexed. Is it possible to omit the color table and just put values instead of ...
2
votes
3answers
7k views
How can I convert a color image to grayscale in MATLAB?
I am trying to implement an algorithm in computer vision and I want to try it on a set of pictures. The pictures are all in color, but I don't want to deal with that. I want to convert them to ...
2
votes
2answers
909 views
GrayScale (by ColorMatrix) causes OutOfMemoryException. Why?
I have 2 forms, A and B. On the Form A, I click a button and an Image is being loaded to a PictureBox located ona the Form B. And, I want to set GrayScale to this image by:
public void ...
1
vote
2answers
220 views
How to get the pixel value in a grayscale image
I have a BufferedImage which is of TYPE_BYTE_GRAY and I need to get the pixel value at x,y. I know I can't use getRGB as it returns the wrong color model so how do I go about it? Many thanks!
1
vote
2answers
102 views
having difficulties finding the radius of the circle
http://imageshack.us/photo/my-images/189/unledgev.png/
i h'v having problem with finding the radius of this circle. i converted the original image in to gray scale and performed a edge detection ...
1
vote
2answers
110 views
Turning a Large Matrix into a Grayscale Image
I have a NumPy array of 3,076,568 binary values (1s and 0s). I would like to convert this to a matrix, and then to a grayscale image in Python.
However, when I try to reshape the array into a ...
1
vote
0answers
52 views
How to increase the color tone of a picture in C#?
I have got the picture that has got a text in it. I have already converted that picture into grayscale by using the ColorMatrix.
public Bitmap MakeGrayscale(Bitmap original)
{
//create a blank ...
1
vote
2answers
409 views
Is it possible to do desaturation in OpenGL ES 1.0 and how?
I'd like to render a colour texture in gray. Doing it in ES 2.0 by using a shader is a piece of cake, but is it possible to do in ES 1.x?
UPDATE
Thanks to @datenwolf, I'm doing it like that:
...
1
vote
2answers
711 views
Desaturate Images with Javascript/jQuery/CSS IN CHROME
I can't seem to find a way to render grayscale images from colored images in Chrome with CSS or Javascript. I have a feeling that any Canvas solution won't work in Chrome and was looking for another.
...
1
vote
2answers
126 views
My batch jpg resizer works with color images, but grayscale ones become washed out
I've been having a problem with my Java program. It's for resizing images. You drop it into a folder and run it, and it creates a new folder with the resized images. It works great on color, but it ...
1
vote
2answers
89 views
Setting the grayscale value of a pixel in php
I have a jpeg image resource loaded into a variable in php. Given a grayscale value, like 6, how can I set a single, particular pixel to that grayscale value? My client has made it exceedingly clear ...
1
vote
1answer
498 views
Gray UIImage - Gray IPlimage Conversion
I wanna transform a grayscaled iplimage into uiimage and viceversa. I have two methods like below that are successful in RGB colorspace conversion, But no success for Gray images.
- (UIImage ...
1
vote
3answers
558 views
Matlab : 256 binary matrices to one 256 levels grayscale image
a process of mine produces 256 binary (logical) matrices, one for each level of a grayscale source image.
Here is the code :
so = imread('bio_sd.bmp');
co = rgb2gray(so);
for l = 1:256
bw = (co ...
1
vote
1answer
76 views
Change the gray levels of pixels of an image
In particular, I have 2 vectors that have been filled by integers between 0 and 255 and a gray scale image.
I want to change the gray level of pixels of the image that matches with vec1[i] to vec2[i].
...
1
vote
2answers
105 views
Javascript order in html
I'm having a problem with javascript files ie. some scripts don't work depending of way i order them in html file.Here is demo just to show you what i mean:
http://testground.uphero.com/test/
As you ...
1
vote
2answers
495 views
How is the image data interpreted for a grayscale image on an iPhone?
How do I make sense of the image data for a grayscale image given the following scenario: I capture video data from the "sample buffer" and extract an 80x20 section and then turn that into a grayscale ...
1
vote
2answers
89 views
How can I apply a function to several images in jQuery?
I need a little help with (probably) something really simple.
I want to use a script which converts images from color to grayscale.
I got it working partially — the first image turns gray, but the ...
1
vote
1answer
290 views
Linux command-line utility to remove colors in a PDF file?
I'm searching for a linux command-line utility/script capable of removing colors in a PDF. The output of the utility should be the same PDF, but in grayscale.
Does anyone know how to do this?
Thanks
...
1
vote
1answer
1k views
J2ME: Convert transparent PNG image to grayscale
is there any possiblity in J2ME to convert an image (loaded from a png file with alpha) to a new transparent grayscale image?
Until now I only got the rgb values, but not the alpha.
Thanks.
Edit: ...