|
Applying Gaussian Blur to Camera Images
Hello.
Is there any way to apply a Gaussian Blur to an RGBImage? Is there a library or a function that can do this?
Here's a sample of our image processing code for reference.
ColorImage *image;
image = camera->GetImage();
image->Write("/original.bmp");
//Here's where we'd like to add the blur
BinaryImage *thresholdImage = image->ThresholdHSV(threshold);
thresholdImage->Write("/threshold.bmp");
BinaryImage *filteredImage = thresholdImage->ParticleFilter(criteria, 1);
filteredImage->Write("Filtered.bmp");
Thank you for any help you can give us!
|