Hello,<br><br>I am beginner in using itk and I am trying to get the pixel value of a 2D image. As a first step, I am trying to create my own image object, to initialize and allocate the image region, and finally using the itkIndex to get and set a pixel value (knowing that is not the fastest method). I have written the following code, which is correctly built using VisualStudio2010 and Cmake. But when I run the .exe file with the Command Prompt window, I don&#39;t get any result on my screen. Could somebody tell me what to do to get some results? <br>
In the second step, I would like to set the filename of the image myself, using the Command Prompt window. Could somebody tell me what to change in my code, not only in the .cxx file but also in thr CMakeLists.txt?<br><br>
Thanks in advance<br><br>---------------------------------code-----------------------<br>------------------------------------------------------------<br><br>#if defined(_MSC_VER)<br>#pragma warning ( disable : 4786 )<br>#endif<br>
<br><br>#include &quot;itkImage.h&quot;<br>#include &quot;itkIndex.h&quot;<br><br>int main(int, char *[])<br>{<br>  // First the image type should be declared<br>  typedef itk::Image&lt; unsigned short, 2 &gt; ImageType;<br>
<br>  // Then the image object can be created<br>  ImageType::Pointer image = ImageType::New();<br><br>  // The image region should be initialized<br>  ImageType::IndexType start;<br>  ImageType::SizeType  size;<br><br>  size[0]  = 200;  // size along X<br>
  size[1]  = 200;  // size along Y<br> <br><br>  start[0] =   0;  // first index on X<br>  start[1] =   0;  // first index on Y<br> <br><br>  ImageType::RegionType region;<br>  region.SetSize( size );<br>  region.SetIndex( start );<br>
  <br>  // Pixel data is allocated<br>  image-&gt;SetRegions( region );<br>  image-&gt;Allocate();<br><br>  // The image buffer is initialized to a particular value<br>  ImageType::PixelType  initialValue = 0;<br>  image-&gt;FillBuffer( initialValue );<br>
<br><br>  ImageType::IndexType pixelIndex;<br> <br>  pixelIndex[0] = 27;   // x position<br>  pixelIndex[1] = 29;   // y position<br><br><br><br>  ImageType::PixelType   pixelValue = image-&gt;GetPixel( pixelIndex );<br><br>
<br><br>  image-&gt;SetPixel(   pixelIndex,   pixelValue+1  );<br><br><br><br>  return 0;<br><br>}<br><br><br><br>---------------------------------------------CMakeLists.txt-------------------------<br>------------------------------------------------------------------------------<br>
cmake_minimum_required(VERSION 2.6)<br> <br>PROJECT(project)<br> <br>FIND_PACKAGE(ITK REQUIRED)<br>INCLUDE(${ITK_USE_FILE})<br> <br> <br>ADD_EXECUTABLE(project project.cxx)<br>TARGET_LINK_LIBRARIES(project ITKCommon )<br>
<div style="visibility: hidden; left: -5000px; position: absolute; z-index: 9999; padding: 0px; margin-left: 0px; margin-top: 0px; overflow: hidden; word-wrap: break-word; color: black; font-size: 10px; text-align: left; line-height: 130%;" id="avg_ls_inline_popup">
</div>