Ask Your Question
0

How to show a RGB picture as float64?

asked 2023-06-01 11:21:01 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-01 11:49:01 +0000

nofretete gravatar image

You can convert a RGB picture to float64 by dividing each RGB value in the picture by 255:

import numpy as np import cv2 # Read RGB picture img = cv2.imread("picture.png") # Convert to float64 img_float64 = img.astype(np.float64) / 255.0 

This will create a new img_float64 ndarray with the RGB values as floating-point numbers between 0.0 and 1.0.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-01 11:21:01 +0000

Seen: 12 times

Last updated: Jun 01 '23