<div dir="ltr"><div><div><div><div>Hello,<br><br></div>I have understood how the "Gray Level Run Length" method works, and trying to implement that in ITK.<br><br></div>I'm kind of new to ITK, and just need some guidance on how to proceed.<br>
<br></div>This is what I have done so far for instance:<br><br>typedef itk::Image<double, 3> InputImageType;<br>typedef itk::Statistics::ScalarImageToRunLengthMatrixFilter<InputImageType> FilterType;<br>typedef VectorContainer<unsigned char, OffsetType> OffsetVector;<br>
typedef typename OffsetVector::Pointer OffsetVectorPointer;<br>InputImageType::Pointer image = InputImageType::New();<br>FilterType::Pointer filter = FilterType::New();<br>filter->SetInput(image);<br><br>InputImageType::OffsetType offset1 ={{1,0}};<br>
<br>FilterType::OffsetVectorPointer offsetV = FilterType::OffsetVector::New();<br>offsetV.push_back(offset1);<br><br>filter->SetOffsets(offsetV);<br><br></div>Any guidance or hints on how to proceed on that?<br><br>Thanks.<br>
</div>