Missing samples in image
조회 수: 1 (최근 30일)
이전 댓글 표시
Can any body guide me how to convert image and its DFT like the above one using MATLAB. The region in black means that the value of these pixels is 0.
댓글 수: 0
답변 (1개)
Image Analyst
2014년 1월 9일
Make a binary image which is true where there is supposed to be black pixels and false where there is the gray. Then just zero out your image at the true locations
yourImage(binaryImage) = 0;
댓글 수: 3
Image Analyst
2014년 1월 10일
It should look exactly like mine, except that your variable names may be different.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!