How to create a binary grating pattern with Matlab?

Hello Everyone,
I want to design several binary grating patterns with matlab. The matrix size is 1920*1080, the period is 4 pixels. The patterns have there direction angle, one is zero, the second is 2*pi/3, the last is 4*pi/3. I tried used square function, but the result is not correct. Does anyone know how to do this?
Thank you very much. Xiaolei

 채택된 답변

Joseph Cheng
Joseph Cheng 2014년 6월 25일
편집: Joseph Cheng 2014년 6월 25일
Well... what you could do is do:
I = zeros(1920,1080);
cols = 0:1080-1;
I(:,find(mod(cols,4)<2))=1;
and then use imrotate to get your direction angle.

댓글 수: 2

Hello Joseph, Thank you very much, that's very helpful. But there is a problem when I use imrotate, the matrix will change. I just want the grating pattern direction change while keep the matrix still is 1920*1080. Another question is how can I change the phase of this pattern? Would you please give me some suggestions?
My license for imageprocessing was taken up by someone else so i couldn't try. However reading the documentation it maybe a property that you can set within the imrotate function.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Aerospace Blockset에 대해 자세히 알아보기

질문:

2014년 6월 25일

댓글:

2014년 6월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by