PNG or JPEG image matlab

1 view (last 30 days)
Halit Dagtan
Halit Dagtan on 23 Mar 2023
Commented: Image Analyst on 24 Mar 2023
A program that prints the RGB ratios of a picture output in PNG or JPEG format in Matlab environment.
Matlab ortamında PNG veya JPEG formatında verilen bir resim dosyasında ki RGB oranlarını ekrana yazdıran program
  3 Comments
Rik
Rik on 24 Mar 2023
Your question seems to be incomplete. Have a read here and here. It will greatly improve your chances of getting an answer.
Use a machine translation (e.g. Google Translate) to translate your post if your English is poor. Use short sentences, but make sure they are grammatically correct. That will help the translation software.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 23 Mar 2023
What do you mean by "print"? If you want to convert an image to a CSV text file that you can print, see attached demo.
If you just want to display an image on your monitor, use imread and imshow
rgbImage = imread(fileName);
imshow(rgbImage);
  2 Comments
Image Analyst
Image Analyst on 24 Mar 2023
Again, if you mean print as in "laser jet toner on white printer paper" then you can use your operating system or Excel to print the values in the CSV file. However it will be thousands of pages long and you'll go through many, many reams of paper.

Sign in to comment.

Categories

Find more on Environment and Settings 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!