Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update template_matching.jl in docs #280

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/demos/search/template_matching.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Gray.(threshold)

# Now we see small blobs at the locations which match our template and we can label the connected regions by `label_components`. This will enumerate are connected regions and `component_centroids` can be used to get the centroid of each region. `component_centroids` also return the centroid for the background region, which is at the first position and we will omit it.

centroids = component_centroids(label_components(threshold))[2:end]
centroids = component_centroids(label_components(threshold))[begin+1:end]

# To check if it worked correctly we can overlay the centroids with the original image using the `Plots` package. As the images are stored using the first index for rows we have to reverse the order of the coordinates to match the order of the plotting library.
plot(Gray.(img), size=(512,512))
Expand Down
Loading