Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
21k views

How to convert an 8-bit OpenCV IplImage* to a 32-bit IplImage*?

I need to convert an 8-bit IplImage to a 32-bits IplImage. Using documentation from all over the web I've tried the following things: // general code img2 = cvCreateImage(cvSize(img->width, ...
4
votes
5answers
1k views

how to get Bitsperpixel from a bitmap

I have a 3rd party component which requires me to give it the bitsperpixel from a bitmap. whats the best way to get "bits per pixel"? I have a c# windows app and my starting point is the following ...
1
vote
3answers
316 views

How to convert a byte array of 19200 bytes in size where each byte represents 4 pixels (2 bits per pixel) to a bitmap arranged as 320x240 characters

I am communicating with an instrument (remote controlling it) and one of the things I need to do is to draw the instrument screen. In order to get the screen I issue a command and the instrument ...
1
vote
2answers
851 views

Reduce bit-depth of PNG files from the command line

What command or series of commands could I execute from the CLI to recursively traverse a directory tree and reduce the bit-depth of all PNG files within that tree from 24bpp to 16bpp? Commands should ...
0
votes
0answers
17 views

How can I compress jpeg image with compression rate 4 bpp or less?

I am trying to compress my .jpeg image in Photoshop. WHat is the best way to do this? I am now calculating the bpp taking the image size in kb, calculating how many bits that is. Then I take the ...
0
votes
1answer
41 views

Why is the bpp information at 0x1C in this .bmp image wrong?

Address 1D indicates the image is eight bits per pixel, but it isn't, each pixel is represented by 3 bytes (24 bits). At first, I thought photoshop did this in error, but I found that this format ...
0
votes
1answer
813 views

can generic Bluetooth dongle be used for printers that support printing over Bluetooth?

I have tried using a Bluetooth dongle (Advik) with my "KodakESP-3+2445" printer. I have created an Android client to connect to this printer. I select a UUID for OPP (Object Push Profile) and was able ...
0
votes
2answers
975 views

32 bit depth jpg images problem in IE when referenced locally

We have an webbapplication that takes an image that will be uploaded and resized. The resize-library we used saved all pictures with 32-bit depth whatever the depth was before. We have an online ...
0
votes
1answer
662 views

How to initialize 48bpp bitmaps from RGB?

I'm writing an interpreter in managed C++ for, among other things, the PPM image format. The image spec allows for images with up to two bytes per pixel per channel, or 48 bit per pixel color images. ...