Switch to full style
C++ code examples
Post a reply

Get image pixels Values in ITK

Sat Jul 04, 2015 2:23 pm

Get pixels Values in ITK
cpp code
typedef float       OutputPixelType;
typedef itk::Image< OutputPixelType, 2 > OutputImageType;
void ClassName::printImagePixel2D(int x,int y, OutputImageType::Pointer image)
{

// Access to a pixel
OutputImageType::IndexType pixelIndex;
pixelIndex[0] =x;
pixelIndex[1] =y;
OutputImageType::PixelType pixelValue = image->GetPixel(pixelIndex);
std::cout << "pixel : " << pixelValue << std::endl;

}




Post a reply
  Related Posts  to : Get image pixels Values in ITK
 Set position of background image in pixels     -  
 set the size of border in pixels     -  
 modulus of two values     -  
 Image-Viewer-Image Processing-Filters-Noise-enhancements     -  
 Calculate the sum of values in an array     -  
 EXTRACTING VALUES FROM XML FILE     -  
 Using Multiple Values for a Cookie in php     -  
 How can i Get Brightness and Contrast values of img     -  
 URL Characters and URL Encoding Values     -  
 Dividing two Integer values     -  

Topic Tags

C++ ITK