Circle in a matrix
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (3)
Andrei Bobrov
il 27 Giu 2017
M = zeros(1001);
M(500,500) = 1;
R = bwdist(M);
T = R >= 300;
imagesc(T)
Image Analyst
il 27 Giu 2017
Modificato: Image Analyst
il 27 Giu 2017
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.

1 Commento
Andrei Bobrov
il 27 Giu 2017
+1
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 Commenti
Melissa Buechlein
il 27 Giu 2017
Image Analyst
il 27 Giu 2017
Melissa, did you see my answer? The function bwdist() in the Image Processing Toolbox, will give you "how inside the circle it is".
Categorie
Scopri di più su Neighborhood and Block Processing in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!