00001 #include <mln/core/image/image2d.hh>
00002 
00003 
00004 template <typename I, typename J>
00005 void paste(const I& data, J& dest)
00006 {
00007   mln_piter(I) p(data.domain());
00008   for_all(p)
00009   dest(p) = data(p);
00010 }
00011 
00012 
00013 int main()
00014 {
00015 }