Circle in a matrix
显示 更早的评论
Hello,
I want to make a matrix that has a weight of 1 inside a circle and 0 outside the circle. Along the edges in portions that are not fully inside the circle, I want it to have a partial weight based on how inside the circle it is. I have been able to successfully make a crude circle that only has 1 if it is fully in the circle and 0 otherwise, but I am not sure how to do the rest of the circle.
This is how I did it:
ref1 = (double((I-r).^2+(J-r).^2<=r^2));
Any hints would be extremely appreciated!
Thanks, Melissa
采纳的回答
更多回答(3 个)
Andrei Bobrov
2017-6-27
M = zeros(1001);
M(500,500) = 1;
R = bwdist(M);
T = R >= 300;
imagesc(T)
Image Analyst
2017-6-27
编辑:Image Analyst
2017-6-27
Then call bwdist() to get an image where the value in the disk is it's distance from the edge towards the center of the circle.
% Get Euclidean Distance Transform
distanceImage = bwdist(~circlePixels);
% Normalize it so that it's 1 in the center.
distanceImage = distanceImage / max(distanceImage(:));
Below is a full demo. The value of the circle goes from 0 at the edge to 1.0 at the very center.
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
% Create a logical image of a circle with specified
% diameter, center, and image size.
% First create the image.
imageSizeX = 640;
imageSizeY = 480;
[columnsInImage rowsInImage] = meshgrid(1:imageSizeX, 1:imageSizeY);
% Next create the circle in the image.
centerX = 320;
centerY = 240;
radius = 200;
circlePixels = (rowsInImage - centerY).^2 ...
+ (columnsInImage - centerX).^2 <= radius.^2;
% circlePixels is a 2D "logical" array.
% Now, display it.
subplot(2, 1, 1);
imshow(circlePixels) ;
colormap([0 0 0; 1 1 1]);
title('Binary image of a circle', 'FontSize', fontSize);
% Get Euclidean Distance Transform
distanceImage = bwdist(~circlePixels);
% Normalize it so that it's 1 in the center.
distanceImage = distanceImage / max(distanceImage(:));
% Display it.
subplot(2, 1, 2);
imshow(distanceImage, []) ;
title('Euclidean Distance Transform', 'FontSize', fontSize);
hp = impixelinfo(); % Let user mouse around and see values.

Method 1
%%Make circle
th = linspace(0,2*pi) ;
R = 1. ; % Radius of circle
C = [0 0] ; % Center of circle
xc = C(1)+R*cos(th) ; yc = C(2)+R*sin(th) ;
%%Make mesh
N = 100 ;
x = C(1)+linspace(-R,R,N) ;
y = C(2)+linspace(-R,R,N) ;
[X,Y] = meshgrid(x,y) ;
Z = (X.^2+Y.^2) ;
%%Get points lying inside circle
[in,on] = inpolygon(X(:),Y(:),xc,yc) ;
%%Plot
figure
hold on
plot(X,Y,'r') ;
plot(X',Y','r') ;
%
plot(X(in),Y(in),'.b')
%%Make my matrix
iwant = zeros(size(Z)) ;
iwant(in) = 1 ;
iwant(on) = 1 ;
figure
surf(iwant)
view(2)
shading interp
Method 2
%%Make circle
th = linspace(0,2*pi) ;
R = 1. ; % Radius of circle
C = [0 0] ; % Center of circle
xc = C(1)+R*cos(th) ; yc = C(2)+R*sin(th) ;
%%Make mesh
N = 100 ;
x = C(1)+linspace(-R,R,N) ;
y = C(2)+linspace(-R,R,N) ;
[X,Y] = meshgrid(x,y) ;
Z = (X.^2+Y.^2) ;
%%Make matrix
iwant = zeros(size(Z)) ;
iwant(Z<=R) = 1 ;
2 个评论
Melissa Buechlein
2017-6-27
Image Analyst
2017-6-27
Melissa, did you see my answer? The function bwdist() in the Image Processing Toolbox, will give you "how inside the circle it is".
类别
在 帮助中心 和 File Exchange 中查找有关 Neighborhood and Block Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!