Я бы порекомендовал использовать метод Simd :: View :: Region . Возвращает ссылку на субрегион на данном изображении.
Таким образом, вы можете легко скопировать этот субрегион с помощью Simd :: Copy :
#include "Simd/SimdLib.hpp"
int main()
{
typedef Simd::View<Simd::Allocator> View;
View a(200, 200, View::Gray8);
View b(100, 100, View::Gray8);
// Copying of a part (the rigth bottom corner) of image a to the image b:
Simd::Copy(a.Region(b.Size(), View::RightBottom), b);
return 0;
}