Filter löschen
Filter löschen

Count of total pixels and dimensions(rows and columns) of a picture?

8 Ansichten (letzte 30 Tage)
How do I obtain the number of pixels and the dimensions of this picture?

Akzeptierte Antwort

Davide Masiello
Davide Masiello am 16 Mär. 2022
Bearbeitet: Davide Masiello am 16 Mär. 2022
grayImage = imread('retina.jpg');
numberOfPixels = numel(grayImage)
numberOfPixels = 1879445
[rows,cols] = size(grayImage)
rows = 1357
cols = 1385
  3 Kommentare
Image Analyst
Image Analyst am 16 Mär. 2022
image is a built-in function. It's best to choose another name, like grayImage.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by