how to reduce bits per pixel in an image?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
If my image in the format of png.. i need to compress this image..so image bit per pixel will be reduced? how this is possible
0 comentarios
Respuestas (2)
Image Analyst
el 26 de Feb. de 2014
Using imwrite to create a PNG image does the compression for you. Why do you think you need to do anything additional?
2 comentarios
Image Analyst
el 27 de Feb. de 2014
What GIF image? Images only have a format once they're saved onto disk. Once they're in MATLAB, they're simply an array of numbers. If you use imread() it uncompressed them. They're no longer compressed - it's the full, original array again. The only way to get the compressed data out is if you use fread() but if you did that it's not in a displayable form.
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!