private void Kuwahar_Click(object sender, RoutedEventArgs e)
 {
     Filtr.KuwahraFilter(currentImage.bitmap, currentImage.orygBitmap);
     imgPhoto.Source = ImageSourceForBitmap(currentImage.bitmap);
 }
 private void Blur_Click(object sender, RoutedEventArgs e)
 {
     Filtr.ConvolutionalFilter(currentImage.bitmap, currentImage.orygBitmap, getMaskBlur());
     imgPhoto.Source = ImageSourceForBitmap(currentImage.bitmap);
 }