Azzera filtri
Azzera filtri

Plotting a graph of PSNR vs bit rate for an image,after enhancement?

6 visualizzazioni (ultimi 30 giorni)
Hi,I want to plot a graph between the PSNR and the bit rate.I have got MSE and PSNR values after enhancing an image.How can I get the bit rate(kbps) to represent the data graphically?
  1 Commento
Eduardo
Eduardo il 16 Mag 2015
Hi, I had the same doubt but I managed to solved in this way:
- You have a picture, you can represent it like a matrix with imread.
- Weight * Height * Frame/second = Pixel/second
- Bits Per Pixel (BPP) = BitRate/(Pixel/Second).
That means, you can play with the value of BPP to obtain different's bitrates. Remember, in a image (and not in a video) you will only see a frame per second, son the time will be 1.
-------------------- But I did it in this way, i just play with the values of the compression ratio to obtain differents values of PSNR:
imwrite(iframe,'iframe.jp2','CompressionRatio',i,'mode','lossy');
When 'i' is the value that you put. I did a for i=1:100 and I obtained different values of PSNR. Remember for a higher Compression Ratio, lower PSNR you will obtained.
I hope this can be useful to you!

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 16 Mag 2015
Have you tried plot()?
plot(bitRate, PSNR, 'b-', 'LineWidth', 3);
grid on;

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by