필터 지우기
필터 지우기

Adjacent pixel subtraction of matrix

조회 수: 2 (최근 30일)
Sidra Aleem
Sidra Aleem 2017년 3월 25일
편집: Sidra Aleem 2017년 3월 25일
I have a 3 X 3 Matrix. I want to subtract adjacent pixels on boundaries to subtract from each other in clockwise manner skipping the central pixel. Example:
A= [ 0,0,1;
1,1,0;
0,0,1];
Subtraction of adjacent pixel at boundaries.
(0-0)=0 , (0-1)= -1; (1-0)=1; (0-1)= -1, (1-0)=1, (0,0)=0; (0-1)=-1, (1-0)=1.
I tried
X = [0 0 1;
1, 1,0;
0,0,1];
Y = diff(X,1,2);
But its the difference between columns.
I also tried index wise subtraction. But its not giving correct result.
Thanks in advance

답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by