finding norm L2 python
How to find cv2 norm L2 in python
i am able to do this:
cv2.norm(img1, img2)
but I am not sure which norm is this
How to find cv2 norm L2 in python
i am able to do this:
cv2.norm(img1, img2)
but I am not sure which norm is this
yes, this is using the L2 norm.
(the default value for normType here: norm(src1, src2[, normType[, mask]]) -> retval
)
you can also use:
cv2.NORM_HAMMING = 6
cv2.NORM_HAMMING2 = 7
cv2.NORM_INF = 1
cv2.NORM_L1 = 2
cv2.NORM_L2 = 4
cv2.NORM_L2SQR = 5
cv2.NORM_MINMAX = 32
Asked: 2016-04-14 04:17:40 -0600
Seen: 4,078 times
Last updated: Apr 14 '16
How to estimate the noiselevel of an image?
How to find a match between 2 shifted hue histograms?
Single Image Depth Map / Sharpness Map
How to match two images and find out mistakes
Remove buttons from their background so I can re-use button image
Image stitching from a live video stream
Which matcher is best for SURF?
Classification of object from a video/Image ( human, animals, others(cars etc.,))