dice
dice copied to clipboard
Image transformation from RGB to grayscale
When RGB images are loaded in the software it transforms them to grayscale? If so, how is the transformation? Each RGB pixel is transformed to grayscale using the following equation: grayscale pixel= 30% Red+59% green+11% blue?
DICe uses the OpenCV color to grayscale conversion: https://docs.opencv.org/3.4/de/d25/imgproc_color_conversions.html
Thanks!