View Single Post
  #1   Spotlight this post!  
Unread 14-02-2014, 23:48
Irene-4574 Irene-4574 is offline
Registered User
FRC #4763
 
Join Date: Feb 2014
Rookie Year: 2014
Location: Fullerton
Posts: 9
Irene-4574 is an unknown quantity at this point
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!
Reply With Quote