|
|
(3 intermediate revisions by one other user not shown) |
Line 1: |
Line 1: |
| This example shows how to convert an RGBAImage to an RGBImage using ConvertPixelBuffer::Convert. ConvertPixelBuffer is used internally in itkImageFileReader to convert raw data into itk Images.
| | {{warning|1=The media wiki content on this page is no longer maintained. The examples presented on the https://itk.org/Wiki/* pages likely require ITK version 4.13 or earlier releases. In many cases, the examples on this page no longer conform to the best practices for modern ITK versions. |
| | | }} |
| '''NOTE:''' This example accesses internal pointers for pixel container data. If you think you need to use this approach, be extremely careful. Since you are dealing with raw pointers, you must be certain that the memory organization for the input and output is compatible in C++ type and dimensions.
| |
| | |
| A safer approach uses itkCastImageFilter as illustrated in this example: [[ITK/Examples/ImageProcessing/CastImageFilter|CastImageFilter]]
| |
| ==ConvertPixelBuffer.cxx==
| |
| <source lang="cpp">
| |
| #include "itkRGBPixel.h"
| |
| #include "itkRGBAPixel.h"
| |
| #include "itkImage.h"
| |
| #include "itkDefaultConvertPixelTraits.h"
| |
| #include "itkConvertPixelBuffer.h"
| |
| #include "itkImageRandomConstIteratorWithIndex.h"
| |
| | |
| int main(int argc, char* argv[])
| |
| {
| |
| const int xDimension = 200;
| |
| const int yDimension = 100;
| |
| | |
| typedef unsigned char ComponentType;
| |
| typedef itk::RGBPixel<ComponentType> RGBPixelType;
| |
| typedef itk::RGBAPixel<ComponentType> RGBAPixelType;
| |
| typedef itk::Image< RGBPixelType, 2 > RGBImageType;
| |
| typedef itk::Image< RGBAPixelType, 2 > RGBAImageType;
| |
| typedef itk::DefaultConvertPixelTraits< RGBPixelType >
| |
| TraitsType;
| |
| typedef itk::ConvertPixelBuffer< ComponentType, RGBPixelType, TraitsType >
| |
| RGBAConverterType;
| |
| | |
| RGBImageType::Pointer rgbImg = RGBImageType::New();
| |
| RGBAImageType::Pointer rgbaImg = RGBAImageType::New();
| |
| | |
| // Create the two images
| |
| // RGBAImage
| |
| RGBAImageType::IndexType rgbaStart;
| |
| rgbaStart[0] = 0;
| |
| rgbaStart[1] = 0;
| |
| | |
| RGBAImageType::SizeType rgbaSize;
| |
| rgbaSize[0] = xDimension;
| |
| rgbaSize[1] = yDimension;
| |
| | |
| itk::ImageRegion<2> rgbaRegion(rgbaStart,rgbaSize);
| |
| rgbaImg->SetRegions(rgbaRegion);
| |
| rgbaImg->Allocate();
| |
| | |
| RGBAPixelType rgbaDefault;
| |
| rgbaDefault[0] = 127;
| |
| rgbaDefault[1] = 100;
| |
| rgbaDefault[2] = 230;
| |
| rgbaDefault[3] = 255;
| |
| rgbaImg->FillBuffer(rgbaDefault);
| |
| | |
| // RGBImage
| |
| RGBImageType::IndexType rgbStart = rgbaStart;
| |
| RGBImageType::SizeType rgbSize = rgbaSize;
| |
| itk::ImageRegion<2> rgbRegion = rgbaRegion;
| |
| rgbImg->SetRegions(rgbRegion);
| |
| rgbImg->Allocate();
| |
| | |
| size_t numberOfPixels =
| |
| rgbImg->GetLargestPossibleRegion().GetNumberOfPixels();
| |
| | |
| // Convert a raw buffer to a buffer of pixel types
| |
| RGBAConverterType::Convert(
| |
| static_cast<ComponentType *>(rgbaImg->GetPixelContainer()->GetBufferPointer()->GetDataPointer()),
| |
| rgbaImg->GetNumberOfComponentsPerPixel(),
| |
| (rgbImg->GetPixelContainer()->GetBufferPointer()),
| |
| numberOfPixels);
| |
| | |
| // Check a few random values
| |
| itk::ImageRandomConstIteratorWithIndex<RGBImageType>
| |
| rgbIterator(rgbImg, rgbImg->GetLargestPossibleRegion());
| |
| rgbIterator.SetNumberOfSamples(numberOfPixels / 10);
| |
| rgbIterator.GoToBegin();
| |
| | |
| while(!rgbIterator.IsAtEnd())
| |
| {
| |
| if (rgbImg->GetPixel(rgbIterator.GetIndex())[0] !=
| |
| rgbaImg->GetPixel(rgbIterator.GetIndex())[0] ||
| |
| | |
| rgbImg->GetPixel(rgbIterator.GetIndex())[1] !=
| |
| rgbaImg->GetPixel(rgbIterator.GetIndex())[1] ||
| |
| | |
| rgbImg->GetPixel(rgbIterator.GetIndex())[2] !=
| |
| rgbaImg->GetPixel(rgbIterator.GetIndex())[2])
| |
| {
| |
| std::cout << "Copy failed for index " << rgbIterator.GetIndex()
| |
| << " got " << rgbImg->GetPixel(rgbIterator.GetIndex())
| |
| << " but expected " << rgbaImg->GetPixel(rgbIterator.GetIndex())
| |
| << std::endl;
| |
| }
| |
| ++rgbIterator;
| |
| }
| |
| return EXIT_SUCCESS;
| |
| }
| |
| </source>
| |
| | |
| {{ITKCMakeLists|{{SUBPAGENAME}}}}
| |