Hi all,<br><br>   I am trying to compare the efficiency of different options to access pixel values in ITK image. I understand if it is<br>a serial access (from begin to end), the iterator is the best choice. But what if I would like to access one arbitrary<br>
pixel at a time. What would be more efficient?<br>  <br>   (1) Use iterator-&gt;SetIndex(ind) and then iterator-&gt;Get() or iterator-&gt;Set();<br>   (2) Use image-&gt;GetPixel(ind) or image-&gt;SetPixel(ind);<br>   (3) or something else<br>
<br>Thanks,<br>Mengda<br><br>