I need to compute the convolution between an input image and the derivative of a Gaussian kernel. This question has been already asked (How to apply a partial derivative Gaussian kernel to an image with OpenCV?), but it's not clear if the proposed solution refers to a simple Gaussian kernel or to its derivative.
I'm not a great expert of image filtering, but searching on the web I found out that the Sobel operator is an approximation of a gaussian kernel derivative. So, can I directly use it on my input image to get my convolution? Or, do I need to apply it on a gaussian kernel? Or is there still an even better way to proceed?
Thank you in advance