Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
256x256の画像がありますが、8つの領域(32x32)に分割して特定の領域を取得する簡単な方法はありますか?例:リージョン4,6
画像は 2 次元配列として格納されます。
function region = fnGetRegion(C,I,J); % C is 256x256 image, I, J each range 1:8 to get 32x32 subregion of C region = C((I-1)*32+[1:32],(J-1)*32+[1:32]); end