Trying to figure out how to convert a video frame from BGR to HVC preferably using CUDA Mat
Tried
1) cuda::cvtColor(src, dst, CV_BGR2HVC) but CV_BGR2HVC is not supported
2) Tried searching in http://docs.opencv.org/trunk/d1/d1e/group__cuda.html but could not find any relevant function the closest I got was CV_CUDEV_RGB2HSV_INST(name, scn, dcn, bidx) Not sure how to use this method.