I have an image with many dots, and I would like to extract from it what is the xy place of each dot.
I already know how to do this manually (there is a package for this).
However, is there a way to do this automatically?
(My next question will be - is there a way when there is an image of many lines to detect where the lines intersect / “touch each other”)
Due to queries in the comments, here is an example for an image to "solve" (for example: retrieving the locations of data points for it)
#riddle 1 (find dots): plot(cars, pch = 19) #riddle 2 (find empty center circles): plot(cars, pch = 1) #riddle 2 (fine intersection points): plot(cars, pch = 3) #riddle 3 (find intersections between lines): plot(cars, pch = 1, col = "white") lines(stats::lowess(cars)) abline(v = c(5,10,15,20,25))
Thanks Tal
(ps: since I am not familiar with this field, I am sorry if I use the wrong terminology or ask too simple or complex question. Is this OMR ?)
source share