PNG or JPEG image matlab

조회 수: 5 (최근 30일)
Halit Dagtan
Halit Dagtan 2023년 3월 23일
댓글: Image Analyst 2023년 3월 24일
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
Halit Dagtan
Halit Dagtan 2023년 3월 23일
A program that prints the RGB ratios of a picture output in PNG or JPEG format in Matlab environment.
Rik
Rik 2023년 3월 24일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2023년 3월 23일
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
Halit Dagtan
Halit Dagtan 2023년 3월 24일
A program that prints the RGB ratios of an image file in PNG or JPEG format in the Matlab environment. upload an image in these formats and convert it to rgb
Image Analyst
Image Analyst 2023년 3월 24일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by