converting a decimal number into color code using Opencv [closed]

asked 2014-12-29 03:42:13 -0500

RSA_kustar gravatar image

I have an array of 3d points,for example: AR = {(1,0,0) , (0.3,0.4,-0.5) , .... } where the norm of each element is between 0 and 1

I want to draw an image using Opencv and to convert each element ( the norm that is between 0 annd 1) into a color in each pixel

 Vec3b color = image.at<cv::Vec3b>(cv::Point(x,y));
 color.val[0] = // what should I add here 
 color.val[1] = // what should I add here 
 color.val[2] =  // what should I add here
edit retag flag offensive reopen merge delete

Closed for the following reason OpenCV Question: THe OpenCV community prefers to answer questions at: http://answers.opencv.org/questions/ by tfoote
close date 2014-12-29 11:01:31.623024