how to convert bpp(bits per pixel to compression ratio)?
    9 views (last 30 days)
  
       Show older comments
    
e.g. let bpp is 0.1870....than what will be the compression ratio?
0 Comments
Answers (1)
  Walter Roberson
      
      
 on 10 May 2015
        That depends upon the original image. Most images in common use are 8 bits (uint8) per color component, 3 color components per pixel, so 24 total bits per pixel. If you had 0.1870 bits per pixel instead, your compression ratio would be 24:0.1870 or about 128.3 to 1
Some kinds of image have only 1 color pane, and some kinds of images use more or fewer bits per component.
imfinfo() can be used to extract information about an image file. In particular look at the Bitdepth field.
11 Comments
  Walter Roberson
      
      
 on 10 May 2015
				
      Edited: Walter Roberson
      
      
 on 10 May 2015
  
			To interpret that, we would need more information about what fileSize means here, and about what X is.
Note: I do not have the Wavelet Compression Toolbox to look at that code. (Do not post the file, though, it is proprietary.)
See Also
Categories
				Find more on Denoising and Compression in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!