Hi Stephan<br><br>Just to be sure I got your point:<br><br>You mean that if we iterate over all the neighbohoods of a single final image in a multithreaded way, we might screw up with the unsafe implementations right? In a pseudo code, this:<br>
<br>for (int i =0; i < nThreads, i++) {<br>  threads[i] = new Thread() {<br>  <br>    public void run() {<br><br>             for ( Neighborhood<T> n : chunks)<br>
                    for ( T t : n )<br>
          ... <br>...<br>...<br><br>would always fail with the unsafe implementation and always work with safe implementations? Right??<br>