The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
144 views

Image conversion to Grayscale using ImageMagick is very dark

I converted a bunch of "normal" JPG photos via convert infile -colorspace Gray outfile to monochrome. However the result is for all images very dark. Here a sample conversion: original photo and ...
1
vote
2answers
299 views

How do I load 8-bit binary image data into an OpenGL ES 2 texture on Android

I want to read monochrome image data from disk in a binary format (unsigned byte) and display it as an OpenGL ES 2 texture in Android. I am currently using Eclipse and the AVD emulator. I am able to ...
2
votes
0answers
169 views

Saving Bitmap as 1bpp PNG on Android

I'm searching for a method to save a small monochrome Bitmap to a 1bpp PNG file. By default, the bitmap.compress(CompressFormat.PNG, 100, os) produces a 32bpp PNG file having only 2 colors, and about ...
0
votes
1answer
106 views

TBitmap.monochrome property equivalent in c#

I'm trying to convert a Delphi code to C# and I wonder if there's an equivalent of VCL.Graphics.TBitmap.Monochrome property in C#? It's explanation it says: Determines whether the bitmap displays ...
1
vote
1answer
710 views

Gnuplot Stacked Histogram in Black and White

I'm trying to print stacked histogram from gnuplot into black and white png. By this I mean I would like each region in the bar to be hatched or checked alongside the legend on the side; that way when ...
2
votes
2answers
307 views

Getting pixels' colors of a monochrome image using C#

As the subject says, I have a .bmp image and I need to write a code which will be able to get the color of any pixel of the image. It is a 1bpp (indexed) image, so the colour will be either black or ...
0
votes
0answers
14 views

NSView monochrome post-effect

I'm wondering if anyone knows how alphaValue actually works and how I can implement a similar technique to apply a monochrome effect to a NSView. Please note, I need to do this without using layers.
1
vote
2answers
83 views

Javascript: detect monochrome display

I've been testing an HTML5 webapp on eReaders, and I got it mostly working, but the colors are all messed up (it's monochrome). My app uses lots of colors with an update every second. I need this to ...
1
vote
2answers
205 views

how to print a uint16 monochrome image in Qt?

I'm trying to print a image from a Dicom file. I pass the raw data to a convertToFormat_RGB888 function. As far as I know, Qt can't handle monochrome 16 bits images. Here's the original image ...
3
votes
2answers
2k views

Android: Converting a Bitmap to a Monochrome Bitmap (1 Bit per Pixel)

I want to print a Bitmap to a mobile Bluetooth Printer (Bixolon SPP-R200) - the SDK doesn't offer direkt methods to print an in-memory image. So I thought about converting a Bitmap like this: Bitmap ...
2
votes
1answer
231 views

Library for reading/writing bitonal (1bpp) images in Linux?

I'm trying to write a C program to run under Linux that includes reading and writing image files. All the image files I'll be dealing with are TIFF format bitonal images, at 1 bit per pixel. I've been ...
1
vote
1answer
401 views

How to add B&W images as JBIG2DECODE streams into a PDF via iText

I am working on a utility to replace images in a PDF with smaller, monochrome (2-color B&W) versions for the purpose of shrinking scanned PDFs. The program below (which is the whole thing) ...
0
votes
0answers
285 views

problems writing single channel video with opencv 2.1

I'm finding some problems about writing a single channel video with opencv 2.1. When executing: m_hAVIwriter = cvCreateVideoWriter(szFileName, 0,m_fps,cvSize(m_nSizeX,m_nSizeY),0); The program ...
1
vote
2answers
1k views

monochrome black-and-white bitmap

I'm working on Android for converting a colored bitmap captured from the camera into a black-and-white monochromatic image (no grays!). I've got several methods for the gray scale conversion but I ...
2
votes
2answers
776 views

How can I render a monochrome bitmap in color in WPF?

Back in Win32 days, if I had a monochromatic bitmap, which is for all intents and purposes just a bitmap mask, I could render that bitmap onto a DeviceContext. What would happen is every pixel where ...
2
votes
1answer
371 views

Make entire screen monochrome and other full screen effects

Does anyone know how to apply effects to the entire screen, in c# or any programming language. I'm mostly interested in making the screen monochrome (specifically green-white instead of black white). ...
0
votes
1answer
648 views

Can't Create Monochrome Bitmap from HBITMAP got by GDI+ Bitmap::GetHBITMAP

I am unable to Create a Monochrome Mask for a 24BPP Colour image with SetBkColor() > BitBlt[SRCCOPY]. The Mask ends up completely Black. The entire thing works only if I use LoadImage() instead to get ...
1
vote
2answers
488 views

Monochrome Bitmap

Should be an easy one. I'm working on Scala trying to handle long sequences of binary data. That is long lists of 0's and 1's. What is the 'best' way to store/access this kind of data. The important ...
1
vote
2answers
1k views

Convert a image to a monochrome byte array

I am writing a library to interface C# with the EPL2 printer language. One feature I would like to try to implement is printing images, the specification doc says p1 = Width of graphic Width of ...
8
votes
5answers
6k views

RGB to monochrome conversion

How do I convert the RGB values of a pixel to a single monochrome value?