Closed. This question is off-topic. It is not currently accepting answers. Learn more。
想改进这个问题吗Update the question所以堆栈溢出的值小于aa>。
我是这个网站的新用户,这是我第一次查询…
我需要用C++或Matlab实现简单的滑动窗口算法
请在这方面帮助我
谢谢
最佳答案
假设您需要一个用于图像处理的通用滑动窗口,在Matlab中您可以执行以下操作:
image = imread('image.png');
imageWidth = size(image, 2);
imageHeight = size(image, 1);
windowWidth = 32;
windowHeight = 32;
for j = 1:imageHeight - windowHeight + 1
for i = 1:imageWidth - windowWidth + 1
window = image(j:j + windowHeight - 1, i:i + windowWidth - 1, :);
% do stuff with subimage
end
end
07-27 13:34