// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkImageRGBToYIQ.h" #include "vtkImageData.h" #include "vtkImageProgressIterator.h" #include "vtkMath.h" #include "vtkObjectFactory.h" VTK_ABI_NAMESPACE_BEGIN vtkStandardNewMacro(vtkImageRGBToYIQ); //------------------------------------------------------------------------------ vtkImageRGBToYIQ::vtkImageRGBToYIQ() { this->Maximum = 255.0; this->SetNumberOfInputPorts(1); this->SetNumberOfOutputPorts(1); } //------------------------------------------------------------------------------ // This templated function executes the filter for any type of data. namespace { template void vtkImageRGBToYIQExecute( vtkImageRGBToYIQ* self, vtkImageData* inData, vtkImageData* outData, int outExt[6], int id, T*) { if (std::is_unsigned::value && id == 0) { vtkErrorWithObjectMacro(self, "YIQ color space requires negative numbers"); } vtkImageIterator inIt(inData, outExt); vtkImageProgressIterator outIt(outData, outExt, self, id); double max = self->GetMaximum(); // find the region to loop over int maxC = inData->GetNumberOfScalarComponents() - 1; // Loop through output pixels while (!outIt.IsAtEnd()) { T* inSI = inIt.BeginSpan(); T* outSI = outIt.BeginSpan(); T* outSIEnd = outIt.EndSpan(); while (outSI != outSIEnd) { // Pixel operation double R = static_cast(*inSI) / max; inSI++; double G = static_cast(*inSI) / max; inSI++; double B = static_cast(*inSI) / max; inSI++; // vtkMath::RGBToHSV(R, G, B, &H, &S, &V); // Port this snippet below into vtkMath as RGBtoYIQ(similar to RGBToHSV above) // The numbers used below are standard numbers used from here // https://www.eembc.org/techlit/datasheets/yiq_consumer.pdf // Please do not change these numbers double Y = 0.299 * R + 0.587 * G + 0.114 * B; double I = 0.596 * R - 0.275 * G - 0.321 * B; double Q = 0.212 * R - 0.523 * G + 0.311 * B; //---------------------------------------------------------------- Y *= max; I *= max; Q *= max; Y = std::min(Y, max); I = std::min(I, max); Q = std::min(Q, max); // assign output. *outSI = static_cast(Y); outSI++; *outSI = static_cast(I); outSI++; *outSI = static_cast(Q); outSI++; for (int idxC = 3; idxC <= maxC; idxC++) { *outSI++ = *inSI++; } } inIt.NextSpan(); outIt.NextSpan(); } } } //------------------------------------------------------------------------------ void vtkImageRGBToYIQ::ThreadedExecute( vtkImageData* inData, vtkImageData* outData, int outExt[6], int id) { vtkDebugMacro(<< "Execute: inData = " << inData << ", outData = " << outData); // this filter expects that input is the same type as output. if (inData->GetScalarType() != outData->GetScalarType()) { vtkErrorMacro(<< "Execute: input ScalarType, " << inData->GetScalarType() << ", must match out ScalarType " << outData->GetScalarType()); return; } // need three components for input and output if (inData->GetNumberOfScalarComponents() < 3) { vtkErrorMacro("Input has too few components"); return; } if (outData->GetNumberOfScalarComponents() < 3) { vtkErrorMacro("Output has too few components"); return; } switch (inData->GetScalarType()) { vtkTemplateMacro( vtkImageRGBToYIQExecute(this, inData, outData, outExt, id, static_cast(nullptr))); default: vtkErrorMacro(<< "Execute: Unknown ScalarType"); return; } } void vtkImageRGBToYIQ::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); os << indent << "Maximum: " << this->Maximum << "\n"; } VTK_ABI_NAMESPACE_END