I am unable to extract GLRLM features using the PyRadiomix library for a .jpg file. It has also a mask input, which is not clear to me.
import SimpleITK as sitk
from radiomics import glrlm
from radiomics import featureextractor
image = sitk.ReadImage('D:\Desert.jpg', imageIO="JPEGImageIO")
extractor = featureextractor.RadiomicsFeatureExtractor()
extractor = featureextractor.RadiomicsFeatureExtractor(binWidth=20, sigma=[1,
2, 3], verbose=True)
# Disable all feature classes, save firstorder
extractor.disableAllFeatures()
extractor.enableFeatureClassByName('glrlm')
extractor.enableFeaturesByName(glrlm=['SRE', 'LRE','GLN','GLNN','RLN','RLNN','RP','GLV','RV','RE','LGLRE','HGLRE','SRLGLE','SRHGLE','LRLGLRE','LRHGLRE'])
******result = extractor.execute(imagePath, labelPath)*******
I got this code from the PyRadiomics website. But at the last line, I can't understand the two parameters
From the documentation:
Therefore in the call
labelPath
plays the role ofmaskFilepath
in the signature.