Hough transform for bone fracture detection

11 ビュー (過去 30 日間)
Aishwarya
Aishwarya 2021 年 5 月 17 日
回答済み: Shiva Kalyan Diwakaruni 2021 年 5 月 25 日
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

回答 (1 件)

Shiva Kalyan Diwakaruni
Shiva Kalyan Diwakaruni 2021 年 5 月 25 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by