0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

cv2で迷った処理メモ

Last updated at Posted at 2025-04-02

数年前に使ってた時のメモなので色々変わっているかもしれません…

float画像(gray_scaleなど)を保存する時、[0, 1]から[0, 255]に直す必要がある

# gray_scaleの画像がそのまま表示できる
imshow(gray_img)
plt.show()

# バグった画像が保存される
cv2.imwrite("gray_img.png", gray_img)

# *255することでgray_scaleをrgb化?
_img = np.clip(gray_img * 255, 0, 255).astype(np.uint8)
cv2.imwrite("rgb_img.png", _img)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?