필터 지우기
필터 지우기

How to calculate enrgy of a matrix

조회 수: 12 (최근 30일)
sakshi ahuja
sakshi ahuja 2016년 3월 29일
댓글: Salma Hassan 2017년 9월 11일
I am having a 2*2 matrix. say it is A=[1 2; 3 4]; how to calculate energy with this.

채택된 답변

Image Analyst
Image Analyst 2016년 3월 29일
What is your definition of energy? You could say that if the array is an image, the pixel values are energy already so you can just sum the array
energy = sum(A(:));
Or you can use the energy as defined from the gray level co-occurrence matrix of the array. From the help for graycoprops():
Calculate statistical properties of the GLCM.
stats = graycoprops(glcm)
stats =
Contrast: 2.8947
Correlation: 0.0783
Energy: 0.1191
Homogeneity: 0.5658
Perhaps you have some other definition - I don't know. After you read this, please clarify your definition of energy.
  댓글 수: 6
Image Analyst
Image Analyst 2017년 9월 11일
I don't know what your vector represents. It might represent energy. Pixels are energy - just go back to first principles to work out the units.
(A watts /square meter) * (B square meters/pixel) * (C Joules/(Watt second)) * (D seconds exposure time) = Joules that are collected in a one pixel area during the exposure time. So gray levels is proportional to Joules.
Salma Hassan
Salma Hassan 2017년 9월 11일

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

추가 답변 (0개)

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by