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!