Hi Marcelo,
There are some image processing steps which could be parallelized into the GPU using OpenCV's GpuMat structure. This would require some low-level interface though, as it is not currently exposed by Bonsai.
This means that even with access to GpuMat you would still need to find some alternative means of processing blobs in the GPU without FindContours. If this is just for detecting one blob you might get away with extracting the centroid by averaging x,y coordinates of white pixels, essentially computing image moments, but even that I can't seem to find on the GPU module of OpenCV.
This is something we have in mind to improve, but there is a bit of work to be done before we can get this to be as practical as the CPU.