我正在使用vtkResliceImageViewer显示图像(多平面重建)。如何垂直\水平翻转\镜像该图像?使用摄像头无法正常工作,因为翻转也必须考虑摄像头的旋转角度,因此变得非常复杂。如果有一种方法可以更改图像的纹理坐标,那就太好了。这可能吗?

最佳答案

 // Create an image
 vtkSmartPointer<vtkImageMandelbrotSource> source =
 vtkSmartPointer<vtkImageMandelbrotSource>::New();
 source->Update();
 // Flip the image
 vtkSmartPointer<vtkImageFlip> flipYFilter =
 vtkSmartPointer<vtkImageFlip>::New();
 flipYFilter->SetFilteredAxis(1); // flip y axis
 flipYFilter->SetInputConnection(source->GetOutputPort());
 flipYFilter->Update();
 // Create the Viewer
 vtkSmartPointer<vtkResliceImageViewer> viewer =
 vtkSmartPointer<vtkResliceImageViewer>::New();
 viewer->SetInputData(flipYFilter->GetOutput())

关于c++ - VTK-如何翻转\镜像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43659578/

10-09 06:36