Инверсия OpenCv: BGR в HSV, затем обратно в BGR - разве я не должен получить то же изображение? - PullRequest
0 голосов
/ 03 сентября 2018

Например, когда я запускаю это:

import cv2
import numpy as np
from collections import Counter

# load image, calculate some basic stats
path = 'path/to/my/image.png'
bgr_img = cv2.imread(path)
h, w, c = bgr_img.shape
print("There are %d entries in this %d channel image" % (h*w*c, c))

# convert and then invert, we should get the same image
bgr_img2 = cv2.cvtColor(cv2.cvtColor(bgr_img, cv2.COLOR_BGR2HSV), cv2.COLOR_HSV2BGR)
print("all entries match: %s" % np.all(bgr_img == bgr_img2))

# hmm, we don't. let's see where the differences are
mismatches = np.where(bgr_img != bgr_img2)
print("there are %d mismatched entries" % len(mismatches[0]))
print("mismatches are along the following channels: %s" % Counter(mismatches[2]))

# ok, clearly lots of them. maybe they're all just off by 1 or 2?
mm = zip(mismatches[0], mismatches[1], mismatches[2])
differences = []
for x, y, c in mm:
    diff = bgr_img[x, y, c] - bgr_img2[x, y, c]
    differences.append(diff)

print(differences)

Я получаю следующий вывод:

There are 1228800 entries in this 3 channel image
all entries match: False
there are 524511 mismatched entries
mismatches are along the following channels: Counter({1: 270572, 0: 253939})
[1, 1, 1, 254, 1, 254, 1, 3, 1, 3, 1, 3, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 1, 3, 1, 3, 1, 3, 1, 254, 1, 254, 254, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, ...]

Я вижу пару возможностей. Во-первых, преобразование BGR -> HSV не является строго обратимым. Другое дело, что я использую OpenCV неправильно. Что это?

1 Ответ

0 голосов
/ 03 сентября 2018

Вы должны получить в значительной степени то же самое изображение, но не, за исключением крайних случаев, идентичные биты. BGR в HSV (и обратно) включает преобразование между пространствами, которые не имеют идентичных представлений для всех значений в другом пространстве. Небольшие ошибки округления будут появляться.

См. Примечание в https://docs.opencv.org/3.4/df/d9d/tutorial_py_colorspaces.html о диапазоне оттенков [0, 179]. Если вы думаете об этом, это означает потерю информации при конвертации из BGR (или RGB). Вы не можете вернуть эти биты надежно.

...