The scikit-image processing example code for circular and elliptical hough transformations and ellipse detection identifies ellipses in an image (link: scikit example code). However, the example only allows me to run the code on images from the scikit data directory. I cannot run the code on a local image.
I have tried merging the path to my local file with the path to the scikit data directory using os.path.join()
. This does not seem to be working.
Any suggestions for how to run this example ellipse detection code on a locally stored image?