Here is my C# code:
public static void FilterNoises(Bitmap bmp)
{
Image<Bgr, Byte> img = new Image<Bgr, byte>(bmp);
img.PyrUp().PyrDown();
img.Save(@"C:\Users\Desktop\Road Images\Filtered Images\" + "filename.extension");
}
I need to get the file name and extansion from bmp object. Any idea how to do it?