Could someone give me MATLAB code for slide window over an image ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I want to slide window over an image from left to right with different scales and positions. Could someone give me MATLAB code to do it? Thanks in advance.
0 comentarios
Respuestas (1)
Image Analyst
el 13 de Mayo de 2014
You can do it with conv() or imfilter() but the window must stay the same as it slides along. You can do this
out = conv2(double(in), windowValues);
out = imfilter(in, windowValues);
You might be able to change the window size on the fly if you use blockproc, nlfilter, or do it yourself with nested for loops.
2 comentarios
Image Analyst
el 13 de Mayo de 2014
Never heard of it. I don't have code for that. Check the Computer Vision System Toolbox, which has tracking capabilities.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!