Bu code'u uygulamayı denedim, ancak konturun en uç noktasını belirlemek istediğimde sorun yaşıyorum bu eğiticiyi izleyin.OpenCV C++ ile konturlarda aşırı noktalar bulma
# determine the most extreme points along the contour
extLeft = tuple(c[c[:, :, 0].argmin()][0])
extRight = tuple(c[c[:, :, 0].argmax()][0])
extTop = tuple(c[c[:, :, 1].argmin()][0])
extBot = tuple(c[c[:, :, 1].argmax()][0])
Bu sorunu çözmeme yardımcı olan var mı?
extRight ve extBot için kod olması gerekir http://answers.opencv.org/question/64433 – sturkmen