Всем привет, пожалуйста, мне нужна помощь, чтобы найти расстояние в количестве пикселей между двумя пикселями (с координатами) на изображении, заранее спасибо
import math
import numpy as np
import matplotlib.pyplot as plt
from math import sqrt
from PIL import Image, ImageOps
%matplotlib inline``
``
img = cv.imread('building.jpg',-1)
cv.imshow('image',img)
# to display image until you press any key
cv.waitKey(0)
# to destroy all windows
cv.destroyAllWindows()
pixels = np.array(img)
width, height, channels = pixels.shape
print(width)
print (height)
P=img[200,510]
print (P)
Q=img[100,410]
print (Q)``