------------------------------------------------------------------------------
| 466 | |
| 467 | //------------------------------------------------------------------------------ |
| 468 | void vtkImageSSIM::AllocateOutputData(vtkImageData* output, vtkInformation* outInfo, int* uExtent) |
| 469 | { |
| 470 | // set the extent to be the update extent |
| 471 | output->SetExtent(uExtent); |
| 472 | int numComponents = vtkImageData::GetNumberOfScalarComponents(outInfo); |
| 473 | output->AllocateScalars(VTK_DOUBLE, numComponents); |
| 474 | } |
| 475 | |
| 476 | //------------------------------------------------------------------------------ |
| 477 | void vtkImageSSIM::ThreadedRequestData(vtkInformation* vtkNotUsed(request), vtkInformationVector**, |
no test coverage detected