vtkImageData处理之阈值分割
生活随笔
收集整理的這篇文章主要介紹了
vtkImageData处理之阈值分割
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
主要應用vtkImageThreshold完成vtkImageData的閾值分割功能,示例代碼如下:
vtkSmartPointer<vtkImageThreshold> thresholdFilter = vtkSmartPointer<vtkImageThreshold>::New();thresholdFilter->SetInputData(VtkImageData);//輸入vtkImageDatathresholdFilter->ThresholdBetween(nThresholdMin, nThresholdMax);//設置分割閾值thresholdFilter->ReplaceInOn();//閾值內的像素值替換thresholdFilter->ReplaceOutOn();//閾值外的像素值替換thresholdFilter->SetInValue(1);//閾值內像素值全部替換成1thresholdFilter->SetOutValue(0);//閾值外像素值全部替換成0thresholdFilter->Update();//觸發管道更新 vtkSmartPointer<vtkImageData> OutPutMaskData = thresholdFilter->GetOutput();//分割并且替換數值后的輸出結果總結
以上是生活随笔為你收集整理的vtkImageData处理之阈值分割的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: html语言怎么修改form边框,for
- 下一篇: OpenCV阈值分割