How to find where a circle lie between which range?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdel-Rahman Eltaib
le 28 Déc 2021
Réponse apportée : Adam Danz
le 28 Déc 2021

Ive a probelem where I need to caclculate the score of the bullet holes or makings. I was able to find the bullet holes or small circles, and was also able to detect the ranges or big circles. I just to make a loop that will detect where these small circles lie between which range.
1 commentaire
Sargondjani
le 28 Déc 2021
Can you be more specific about your problem?
I mean, if you can find each bullet hole, then you already have some kind of loop? So I don't understand why you can identify the position of each circle.
Maybe provide a minimum working example (or short version of your code).
Réponse acceptée
Adam Danz
le 28 Déc 2021
- Convert the (x,y) coordinates of the 5 holes to polar coordinates using [theta,rho]=cart2pol(x,y)
- The rho values are the radial distances from the hole coordinates to the center of the target. Compare those results against the eccentricities of the rings to determine which ring each hole belongs to.
Demo
Create target and holes
cla
hold on
radii = 1:10;
theta = linspace(0,2*pi);
for r = radii
plot(r*sin(theta), r*cos(theta), 'r-')
end
axis equal
% add holes
rng('default') % for reproducibility
[xHole, yHole] = pol2cart(2*pi*rand(1,5), 10*rand(1,5));
plot(xHole, yHole, 'k*', 'MarkerSize', 10, 'LineWidth', 1)
% Label bands
text(radii, radii*0, compose('%g',radii),'HorizontalAlignment','right')
Given coordinates of holes (xHole, yHole) and the radii of target bands (radii), identify the band that contains each hole.
% Measure distance to center
[~, holeRad] = cart2pol(xHole, yHole);
radiiInf = [radii, inf]; % to account for holes outside of outer ring
% Identify band for each hole
[~, bandIdx] = max(holeRad(:) <= radiiInf,[],2);
holeBand = radiiInf(bandIdx);
% Show results in table
T = table(xHole(:), yHole(:), holeRad(:), holeBand(:), ...
'VariableNames', {'x','y','Distance','Band'})
% Label the band for each hole
text(xHole+.5, yHole, compose('%g', holeBand), 'Color', 'b')
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
