标签:
Replacement of SetInput() with SetInputData() and SetInputConnection()
someFilter->SetInput(someReader->GetOutput()); // Outdated // Replace to the following: someFilter->SetInputConnection(someReader->GetOutputPort()); someFilter->SetInputData(aDataObject);
For details, please see here.
Solve error: 'class vtkImageActor' has no member named 'SetInput'
标签:
原文地址:http://www.cnblogs.com/grandyang/p/4955125.html