Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a set of 3D points specifying points on a surface of an object. From these points, i need to construct a 3D logical mask. How can I solve this with matlab? Hope to get some insights.

share|improve this question
2  
What is the criteria for the logical points? On surface? In volume? – macduff Sep 20 '12 at 14:29

2 Answers

up vote 1 down vote accepted
% parameters
num_coordinates = 100;
max_coordinate = 20;
% generate random coordinate
x = sort(randi(max_coordinate, [num_coordinates, 1]));
y = sort(randi(max_coordinate, [num_coordinates, 1]));
z = sort(randi(max_coordinate, [num_coordinates, 1]));
% create the mask
mask = false(max_coordinate, max_coordinate, max_coordinate);
for k = 1 : length(x)
    mask(x(k), y(k), z(k)) = true;
end

If speed is important, I suppose there is a faster solution.

share|improve this answer
Let say I have a 100 point in x,y,z coordinate. The matrix is 100x3. Then what will be the num_coordinates & max_coordinates corresponds to? Thnks. – Anu Mar 15 at 7:48

If you have the "Curve Fitting Toolbox" you could fit a surface formula to the data. And if you now the exact type (like a ball, cone, ...) you can define that as formular to fit to.

Maybe you can provide some example data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.