what does meshgrid function do in resampling?
1 次查看(过去 30 天)
显示 更早的评论
I use a code in the name of imresampling, it uses meshgrid function like bellow
[Ox,Oy] = meshgrid(ss(1):ops(1):c*ops(1)+ss(1),... ss(2):ops(2):r*ops(2)+ss(2));
[Nx,Ny] = meshgrid(nn(1):nps(1):c*ops(1)+nn(1),... nn(2):nps(2):r*ops(2)+nn(2));
[Ox,Oy] is old pixel size, [Nx,Ny] is new pixel size
ops = oldpixsize; nps = newpixsize; ss = ops/2; nn = nps/2; ] I want to know
1. what is goining to create by meshgrid function?
and 2. what is the meaning of "..." in the function?
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!