溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

R語言怎么實(shí)現(xiàn)圖像分割

發(fā)布時(shí)間:2022-06-01 11:36:59 來源:億速云 閱讀:563 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“R語言怎么實(shí)現(xiàn)圖像分割”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“R語言怎么實(shí)現(xiàn)圖像分割”文章能幫助大家解決問題。

原理講解

General Threshold 中用到了三種分割方式:

第一種,原理圖如下,該方法需要設(shè)置一個(gè)低臨界閾值 Lower Threshold,圖像中像素值若低于這個(gè)值,其值變?yōu)?Outsidevalue,否則像素值不變;

該方法中需要設(shè)置二個(gè)參數(shù),低像素值設(shè)定用到的是 ThresholdBelow() 函數(shù);用戶指定  Outsidevalue;

R語言怎么實(shí)現(xiàn)圖像分割   

第二種,方法中需要設(shè)置一個(gè)高臨界閾值 Upper Threshold,圖像中像素值若高于這個(gè)值,像素值將變成 Outsidevalue,否則像素值不變;

該方法中也需要設(shè)置二個(gè)參數(shù),高閾值設(shè)定用到 ThresholdAbove() 函數(shù),用戶指定 Outsidevalue;

R語言怎么實(shí)現(xiàn)圖像分割    

第三種,結(jié)合了前兩種,該方法需要設(shè)置兩個(gè)閾值臨界 Lower Threshold 和 Upper Threshold 兩個(gè)值,若像素值介于兩者之間則不變,否則設(shè)為 Outsidevalue;

方法中需要設(shè)置三個(gè)參數(shù),低閾值設(shè)定用到  ThresholdBelow() 函數(shù),高閾值設(shè)定用到 ThresholdAbove() 函數(shù),用戶指定 Outsidevalue;

R語言怎么實(shí)現(xiàn)圖像分割    
代碼實(shí)現(xiàn)

General Threshold 分割方法用到主要頭文件為  itk::ThresholdImageFilter ;該 Filter 中閾值的設(shè)置用到兩個(gè)函數(shù):

  • ThresholdAbove() ;

  • ThresholdBelow() ;

#include<itkThresholdImageFilter.h>
#include<itkImage.h>
#include<itkImageFileReader.h>
#include<itkImageFileWriter.h>
#include<itkPNGImageIOFactory.h>
#include<string.h>

using namespace std;

int main()
{
    itk::PNGImageIOFactory::RegisterOneFactory();
    string input_name = "D:/ceshi1/ITK/Filter/General_Seg/input.png";
    string output_name1 = "D:/ceshi1/ITK/Filter/General_Seg/output1.png";
    string output_name2 = "D:/ceshi1/ITK/Filter/General_Seg/output2.png";
    string output_name3 = "D:/ceshi1/ITK/Filter/General_Seg/output3.png";

    using PixelType = unsigned char;
    using ImageType = itk::Image<PixelType, 2>;
    using FilterType = itk::ThresholdImageFilter<ImageType>;
    using ReaderType = itk::ImageFileReader<ImageType>;
    using WriterType = itk::ImageFileWriter<ImageType>;

    ReaderType::Pointer reader = ReaderType::New();
    WriterType::Pointer writer = WriterType::New();
    FilterType::Pointer filter = FilterType::New();


    reader->SetFileName(input_name);
    writer->SetFileName(output_name1);
    writer->SetInput(filter->GetOutput());

    filter->SetInput(reader->GetOutput());

    //first Threshold method;
    filter->SetOutsideValue(0);
    filter->ThresholdBelow(170);

    try
    {
        filter->Update();
        writer->Update();

    }
    catch (exception & e)
    {
        cout << "Caught Error" << endl;
        cout << e.what() << endl;
        return EXIT_FAILURE;
    }


    filter->ThresholdAbove(190);
    writer->SetFileName(output_name2);

    try
    {
        filter->Update();
        writer->Update();

    }
    catch (exception & e)
    {
        cout << "Caught Error" << endl;
        cout << e.what() << endl;
        return EXIT_FAILURE;
    }


    //Third Threshold Seg;
    filter->ThresholdOutside(170, 190);
    writer->SetFileName(output_name3);


    try
    {
        filter->Update();
        writer->Update();

    }
    catch (exception & e)
    {
        cout << "Caught Error" << endl;
        cout << e.what() << endl;
        return EXIT_FAILURE;
    }


    return EXIT_SUCCESS;


}

該例子中,用到的輸入圖像為 ITK 官網(wǎng)提供的大腦切片  PNG  圖像,參數(shù)設(shè)定情況如下:Lower Threshold 設(shè)為170,Upper Threshold 設(shè)為190,Outsidevalue 設(shè)為 0,

最后生成的結(jié)果圖如下,第 2-4 張圖片分別為 第一至第三種方法生成得到的結(jié)果。

R語言怎么實(shí)現(xiàn)圖像分割

關(guān)于“R語言怎么實(shí)現(xiàn)圖像分割”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI