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++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkImageRGBToYIQ.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 RGB components to YIQ.
|
|
*
|
|
* For each pixel with red, blue, and green components this
|
|
* filter output the color coded as YIQ.
|
|
* Output type must be the same as input type.
|
|
*/
|
|
|
|
#ifndef vtkImageRGBToYIQ_h
|
|
#define vtkImageRGBToYIQ_h
|
|
|
|
#include "vtkImagingColorModule.h" // For export macro
|
|
#include "vtkThreadedImageAlgorithm.h"
|
|
|
|
class VTKIMAGINGCOLOR_EXPORT vtkImageRGBToYIQ : public vtkThreadedImageAlgorithm
|
|
{
|
|
public:
|
|
static vtkImageRGBToYIQ* New();
|
|
vtkTypeMacro(vtkImageRGBToYIQ, vtkThreadedImageAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
vtkSetMacro(Maximum, double);
|
|
vtkGetMacro(Maximum, double);
|
|
|
|
protected:
|
|
vtkImageRGBToYIQ();
|
|
~vtkImageRGBToYIQ() override {}
|
|
|
|
double Maximum; // Maximum value of pixel intensity allowed
|
|
|
|
void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
|
|
|
|
private:
|
|
vtkImageRGBToYIQ(const vtkImageRGBToYIQ&) = delete;
|
|
void operator=(const vtkImageRGBToYIQ&) = delete;
|
|
};
|
|
|
|
#endif
|