Hough transform for bone fracture detection
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hello, i want to implement bone fracture detection using hough transform. For which i have obtained a graph for hough peak .Now i want to draw/ show ellipse in the image to show fracture location. Can someone please help me with this.
thanks in advance
% Draw ellipse around break location
figure(2)
imshow(img)
hold on
colormap('gray')
if ~isempty(brReg)
plot(brReg.EllipseCoords(:,1), brReg.EllipseCoords(:,2), 'r');
end
hold off
0 commentaires
Réponses (1)
Shiva Kalyan Diwakaruni
le 25 Mai 2021
Hi,
Please refer to the below link
Hope it helps
0 commentaires
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!