Skip to content
Snippets Groups Projects
Commit a9251bc6 authored by am13g23's avatar am13g23
Browse files

Update file README.md

parent 669b34fb
Branches main
No related tags found
No related merge requests found
# Space Cadets Challenge 6 - Circle detection
This is my solution to the sixth challenge. It is an app that can detect circles (most of the time) in saved files and from webcam images. It works by applying sevral convolutions (sobel, blur, detects edges), then applying my own circle detection algorithm. It first works out the midpoints between all edges both vertically and horizontally. Circle centres will be both horizontal and vertical midpoints, hence it checks all potential circles by increasing the radius till it hits an edge, then checking 100 points around the circumference of the circle. If a sufficient amount of points are edges, it is likely a circle.
\ No newline at end of file
This is my solution to the sixth challenge. It is an app that can detect circles (most of the time) in saved files and from webcam images. It works by applying sevral convolutions (sobel, blur, detects edges), then applying my own circle detection algorithm. It first works out the midpoints between all edges both vertically and horizontally. Circle centres will be both horizontal and vertical midpoints, hence it checks all potential circles by increasing the radius till it hits an edge, then checking 100 points around the circumference of the circle. If a sufficient amount of points are edges, it is likely a circle.
The compiled class files are located in the compiled solution folder and the cource code is is in the source code folder.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment