22 - Denoising microscope images in Python

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 38

  • @azazkhan7475
    @azazkhan7475 2 года назад +3

    That was really nice. Please keep explaining the code when you copy from other source. It really helps

  • @stenseenonwuliri7079
    @stenseenonwuliri7079 2 года назад +3

    The best tutorial and image denoising so far

  • @rams8265
    @rams8265 3 года назад +3

    Thanks Sreeni! Your videos are amazing. I have learned a lot. Appreciate your efforts very much.

  • @afmonsalves
    @afmonsalves Год назад +2

    Very well explained, thank you!

  • @GeorgeC1andonly
    @GeorgeC1andonly 4 года назад +1

    Another great Video - Thanks Sreeni

  • @zoranagavrilovic9403
    @zoranagavrilovic9403 4 года назад +2

    Thank you, Sreeni :)

  • @김태호-m3d6l
    @김태호-m3d6l 3 года назад +2

    thank you! such a great lecture

  • @Dina-sc5ks
    @Dina-sc5ks Год назад

    Thank you so much for your videos❤Should I prepare images mri or CT for U-net segmentation?

  • @XinhLe
    @XinhLe 2 года назад

    Digital Sreeni is the best!

  • @MukundMalik
    @MukundMalik Год назад

    why multichannel function is not working. its showing unexpected keyword argument in sigma_est

    • @yunootsuka9093
      @yunootsuka9093 6 месяцев назад +2

      use parameter channel_axis = -1 instead of multichannel parameter.

  • @mbkmuns856
    @mbkmuns856 10 дней назад

    can u make a google collab version

  • @zeeshanahmed3997
    @zeeshanahmed3997 3 года назад

    dear sir, what are the best values of sigma est (lower values or higher values)? Actually, I'm only concerned with noise estimation. Is the lower value of sigma est consider to be a good image? (means having low noise in image).

  • @sheetalpatil4002
    @sheetalpatil4002 2 года назад

    Very nicely explained sir. Could u plz tell how I can apply the same for the whole dataset of images

    • @DigitalSreeni
      @DigitalSreeni  2 года назад

      I covered that topic as part of many of my videos. I guess it takes time for you to slowly work your way through al videos. Here is the link to a video that may answer your question without spending a lot of time sorting through my channel: ruclips.net/video/QxzxLVzNfbI/видео.html

  • @sawon_stories
    @sawon_stories 3 года назад

    sir, I want to implement denoising on tiff images(hyperspectral images) using wavelet transformation(Daubechies 4 mainly) can you please help

  • @dianakrismonita5552
    @dianakrismonita5552 3 года назад

    thank you sir, you explain it very clearly ^^

  • @anasodeh6879
    @anasodeh6879 2 года назад

    How can I open a folder which have a lot of images and analyse all of them ?

    • @DigitalSreeni
      @DigitalSreeni  2 года назад

      This may help: ruclips.net/video/QxzxLVzNfbI/видео.html

  • @mushahidhussain2460
    @mushahidhussain2460 4 года назад

    Thank You sir , sir I need a video related to recognition of object for visually impaired people with in output they tells that what object is that.

    • @DigitalSreeni
      @DigitalSreeni  4 года назад

      I guess you just need to add tools to vocalize the outputs. For example, once you train a model to recognize fruits you can run the model on new images that may come from your smartphone camera. The model then provides an output which you can vocalize sing the smartphone speaker. You do need to learn about deep learning and of course app making in case you want to deploy it on a smartphone.

    • @mushahidhussain2460
      @mushahidhussain2460 4 года назад

      @@DigitalSreeni ok

  • @blackheart6956
    @blackheart6956 3 года назад

    Sir do on Open CV ..and R CNN algo too

    • @DigitalSreeni
      @DigitalSreeni  3 года назад

      Please watch all my videos, you will find a lot of examples for denoising.

  • @SurajSingh-ph9vw
    @SurajSingh-ph9vw 4 года назад

    Sir , why we need to convert one colour space to another colour space? please explain

    • @DigitalSreeni
      @DigitalSreeni  4 года назад

      I explained it here: ruclips.net/video/kL4j-qGkTnY/видео.html

    • @SurajSingh-ph9vw
      @SurajSingh-ph9vw 4 года назад

      @@DigitalSreeni thanku so much sir ji

  • @shubhamshaurya951
    @shubhamshaurya951 4 года назад

    Sir... Please provide DCT coding in python for jpg image..

    • @DigitalSreeni
      @DigitalSreeni  4 года назад

      Can you please explain what you mean by DCT coding?

    • @DigitalSreeni
      @DigitalSreeni  4 года назад

      If you’re referring to discrete cosine transform then it is easy using scipy library, just import DCT as scipy.fftpack.dct

    • @shubhamshaurya951
      @shubhamshaurya951 4 года назад

      Can I implement DCT on pycharm..?

    • @shubhamshaurya951
      @shubhamshaurya951 4 года назад

      Suppose i have two images.. One of them is blurr and another one is clear.. We have to just overlap those two images and make them clear... By applying DCT on image after that average those blocks and again take idct

    • @DigitalSreeni
      @DigitalSreeni  4 года назад +1

      Not sure if I understand your question fully. Here is a link that may help you inst.eecs.berkeley.edu/~ee123/sp16/Sections/JPEG_DCT_Demo.html