how can i perform operations on the basis of image location?
1 次查看(过去 30 天)
显示 更早的评论
I have 2 vectors containing x and y location of a point of an image. My actual image size is 1024*1024 and i have extracted nearly 660 points. these points having x and y location of my image. how can i create a new image in which, value 0 occurs at extracted points and 1 at other locations.
0 个评论
采纳的回答
Image Analyst
2014-6-12
outputImage = zeros(size(grayImage)); % Initialize image to 0.
for k = 1 : length(x);
outputImage(y(k), x(k)) = 1;
end
Use false instead of zeros if you want a binary (logical) image instead of a double.
更多回答(1 个)
imene mannou
2014-6-12
编辑:Image Analyst
2014-6-12
result=I;
result(:,:)=1;
for i=1:length(x)
result(x(i),y(i))=0;
end
2 个评论
Image Analyst
2014-6-12
imene made a common mistake of thinking that array indices are (x,y). They are not, they are (y,x) because the first index is the row, which is the y value.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!