필터 지우기
필터 지우기

Position Of pixel

조회 수: 3 (최근 30일)
Gova ReDDy
Gova ReDDy 2011년 5월 19일
heyy.. can anyone help me out in finding out the position of pixel of an binaryimage and the grayscale value of pixel

채택된 답변

Sean de Wolski
Sean de Wolski 2011년 5월 19일
Igray(Ibinary); %extract gray values of true binary values
true_locations = find(Ibinary); %indices of binary values
You'll have to be more specific if you want more information.
EDIT per comment/clarification:
%Ibinary is your logical map
%Igray is your grayscale image
%Conversions as necessary
if ~isa(Igray,'double');Igray = double(Igray);end
if ~islogical(Ibinary);Ibinary = logical(Ibinary);end
wtrr = bsxfun(@times,(1:size(Igray,1)).',Igray); %weighted Igray by rows
wtrr = sum(wtrr(Ibinary)); %Sum the ones that matter
wtcc = bsxfun(@times,1:size(Igray,2),Igray); %weighted Igray by columns
wtcc = sum(wtcc(Ibinary)); %sum the ones that matter
Gtot = sum(Igray(:));
CGr = sum(wtrr(:))/Gtot;
CGc = sum(wtcc(:))/Gtot;
%CGr is the CG amongst rows (y) and CGc is the CG amongst columns (x)
  댓글 수: 7
Sean de Wolski
Sean de Wolski 2011년 5월 20일
Nope.
Gova ReDDy
Gova ReDDy 2011년 5월 20일
thanks in advance....can u xplain me what %gauss2mf% function does in detail

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by