Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
3k views

RGB to monochrome conversion

How do I convert the RGB values of a pixel to a single monochrome value?
2
votes
0answers
49 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 ...
2
votes
2answers
358 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
252 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). ...
1
vote
0answers
120 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) ...
1
vote
2answers
281 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 ...
0
votes
0answers
87 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 ...
0
votes
2answers
352 views

Android - 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 ...
0
votes
1answer
338 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 ...
0
votes
2answers
784 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 ...