#!/usr/bin/env python3
import numpy as np
import cv2 as cv
params = cv.SimpleBlobDetector_Params()
params.filterByArea = False
params.filterByCircularity = False
params.filterByColor = False
params.filterByConvexity = False
params.filterByInertia = False
det = cv.SimpleBlobDetector_create(params)
im = cv.imread("6USx4.png")
blobs = det.detect(im)
for blob in blobs:
print("center", blob.pt)
center (434.9530029296875, 92.0004653930664)
center (344.7778625488281, 92.0037841796875)
center (254.49986267089844, 91.99874114990234)
center (164.2200164794922, 92.00553894042969)
center (74.04650115966797, 91.99654388427734)
that is python code but I’m sure you can understand what is going on and translate that to your language of choice.