You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkImageYIQToRGB.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkImageRGBToYIQ
|
||
|
* @brief Converts YIQ components to RGB.
|
||
|
*
|
||
|
* For each pixel with Y, I, and Q components this
|
||
|
* filter output the color coded as RGB.
|
||
|
* Output type must be the same as input type.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkImageYIQToRGB_h
|
||
|
#define vtkImageYIQToRGB_h
|
||
|
|
||
|
#include "vtkImagingColorModule.h" // For export macro
|
||
|
#include "vtkThreadedImageAlgorithm.h"
|
||
|
|
||
|
class VTKIMAGINGCOLOR_EXPORT vtkImageYIQToRGB : public vtkThreadedImageAlgorithm
|
||
|
{
|
||
|
public:
|
||
|
static vtkImageYIQToRGB* New();
|
||
|
vtkTypeMacro(vtkImageYIQToRGB, vtkThreadedImageAlgorithm);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
vtkSetMacro(Maximum, double);
|
||
|
vtkGetMacro(Maximum, double);
|
||
|
|
||
|
protected:
|
||
|
vtkImageYIQToRGB();
|
||
|
~vtkImageYIQToRGB() override {}
|
||
|
|
||
|
double Maximum; // Maximum value of pixel intensity allowed
|
||
|
|
||
|
void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
|
||
|
|
||
|
private:
|
||
|
vtkImageYIQToRGB(const vtkImageYIQToRGB&) = delete;
|
||
|
void operator=(const vtkImageYIQToRGB&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|