how can i reconstruct a 3 D image from Brain MRI segmented slices?

7 visualizaciones (últimos 30 días)
faisal aziz
faisal aziz el 13 de Ag. de 2016
Editada: majedaldein almahasneh el 30 de Jun. de 2017
there are multiple segmented slices example
there are 186 slices now i'm trying to reconstruct these images what kind of algorithm apply to reconstruct these images????

Respuestas (2)

Image Analyst
Image Analyst el 13 de Ag. de 2016
Explain what "reconstruct" means to you. Is it simply concatenating all slices into a 3-D volumetric image with cat(3) or indexing like:
for k = 1 : number of files
thisImages2D = imread(......
if k == 1
[rows, columns, numberOfColorChannels] = size(thisImage2D);
image3D = zeros(rows, columns, class(thisImage2D));
end
image3D(:, :, k) = thisImage2D;
end
Or do you mean something else?
  6 comentarios
faisal aziz
faisal aziz el 14 de Ag. de 2016
i'm using fused deposition modeling can you send me the code

Iniciar sesión para comentar.


majedaldein almahasneh
majedaldein almahasneh el 30 de Jun. de 2017
Editada: majedaldein almahasneh el 30 de Jun. de 2017
Hi,
have you tried using mesh?
clc
close all
clear all
x = imread('imagename.bmp'); %read your image
Img1 = double(x); % convert to double
%imshow(Img1)
Img3d = mesh(Img1) %creats a third dimension for the pixels.
Please tell me how it goes!

Categorías

Más información sobre MRI en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by