필터 지우기
필터 지우기

how to find centre of mass in each grid

조회 수: 1 (최근 30일)
Raghu Rao
Raghu Rao 2017년 3월 11일
편집: Raghu Rao 2017년 3월 12일
help me to find centre of mass in each grid in a image

답변 (1개)

Image Analyst
Image Analyst 2017년 3월 11일
Extract each grid into a small subimage, then sum up the x and y
[rows, columns] = find(~subImage);
meanRow = mean(rows);
meanColumn = mean(columns);
  댓글 수: 4
Raghu Rao
Raghu Rao 2017년 3월 12일
thank you image Analyst,
Raghu Rao
Raghu Rao 2017년 3월 12일
편집: Raghu Rao 2017년 3월 12일
  • after editing my code am not getting proper results i want to point center of mass in each grid on image.but am not getting the results. please help me.

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

카테고리

Help CenterFile Exchange에서 Modify Image Colors에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by