napari-simpleitk-image-processing icon indicating copy to clipboard operation
napari-simpleitk-image-processing copied to clipboard

Bilateral Filter

Open Dewey-Wang opened this issue 8 months ago • 0 comments

First of all, thank you for making this a useful tool. I have some questions about the function bilateral_filter(). I used this function through Python but I only could set the radius parameter. How should we set up the domainSigma and rangeSigma? Also, are your default domainSigma and rangeSigma the same as the SimpleITK source code? https://simpleitk.org/doxygen/latest/html/namespaceitk_1_1simple.html#af370886169eb3521afd4e266e694f67d

Besides, if my denoised_images is a 3D image, will the radius be the 3D structure?

import napari_simpleitk_image_processing as nsitk # version 0.4.5 bilateral_denoised_image = nsitk.bilateral_filter(denoised_images, radius)

Dewey-Wang avatar May 31 '24 11:05 Dewey-Wang