Reducing jagged appearance of head CT mesh

조회 수: 2 (최근 30일)
Katherine Beaulieu
Katherine Beaulieu 2019년 8월 13일
편집: Katherine Beaulieu 2019년 8월 13일
Hi Everyone,
I am segmenting the skull from a head CT and there are very little slices (ranging form 50-65) with pixel dimensions in the z-direction rangin from 2.5-3.5. I've attached a picture of what my current mesh looks like after applying isosurface to my binary array. I've tried smoothing with the sgolayfilt function in the second dimension as shown in my code below. If anyone has ever encountered this issue before, what did you to address it? I need the smoothing to happen on the mask rather than the image as my segmentation method isn't designed for large datasets in the third dimension.
Code and Image:outside_skull_mesh.png
for i = 1:size(skull_mask,2)
current_slice_skull = squeeze(double(skull_mask(:,i,:)));
y1 = sgolayfilt(current_slice_skull,3,11);
new_resized_skull(:,i,:) = y1;
end

채택된 답변

Sean de Wolski
Sean de Wolski 2019년 8월 13일
Look at using smooth3 on the volume first before calling isosurface().
  댓글 수: 1
Katherine Beaulieu
Katherine Beaulieu 2019년 8월 13일
편집: Katherine Beaulieu 2019년 8월 13일
That seems to be working - thanks for the quick response! I've attached a picture of the result with the parameters that worked for my case for anyone looking at this after-the-fact!
W = smooth3(outer_boundary_mask,'box',25);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scalar Volume Data에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by