How can i define a phantom in a typical nuclear medicine acquisition matrix size having a spot?
4 views (last 30 days)
Show older comments
How can i define a phantom in a typical nuclear medicine acquisition matrix size having a spot?
0 Comments
Answers (1)
Image Analyst
on 6 Mar 2015
What do you mean by define? You mean make a virtual phantom? Well you can just create an image
grayImage = zeros(rows, columns);
Then set some (row, column) location to a value
grayImage(row, column) = someValue;
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!