Need to do Down Sampling

Hello ....
I want help in deleting odd rows and coloumns from an image and at the same time even rows and even coloumns from an image.

1 件のコメント

Guillaume
Guillaume 2015 年 4 月 29 日
Your question is not clear. If you delete odd and even rows at the same time, then you're left with nothing.

サインインしてコメントする。

回答 (1 件)

Guillaume
Guillaume 2015 年 4 月 29 日

0 投票

This is very basic matrix indexing. To delete odd rows:
m(1:2:end, :) = []
To delete even columns:
m(:, 2:2:end) = []
Note that you can't do both at once. If you want to delete both odd rows and columns, you have to do it in two steps:
m(1:2:end, :) = []; %delete odd rows
m(:, 1:2:end) = []; %delete odd columns

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

JAM
2015 年 4 月 29 日

回答済み:

2015 年 4 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by