05 NymPy | Numerical Python | 3-Dimensional Image Array Manipulation: AI and ML Foundations

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

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

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

    Awesome education.
    Great teacher
    RUclips is the best university in this planet

  • @ravinhett
    @ravinhett 2 года назад +2

    Great tutorial. Really helpful for tackling many issues.

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

    Thank you so much

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

    Thanks, very informative!

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

    beautiful tutorial to help understand matrices

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

    Great it helps me a lot and saves my time

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

    just as I was looking for! A good introduction to the library, Please share the files used to practice in parallel

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

    Amazing video, thank you !

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

      Welcome and thanks!

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

    Great tutorial

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

    Hi Joed. I love your videos on Python!!! You explain Python really really well. I am struggling to understand Axis... and Multidimensional arrays. I can't visualise multidimensional array and the only way I understand a 3-dimensional array is to say it has 3 square brackets. Could there be there more than 3-dimensions in an array?
    I also don't understand Axis.. with methods of Numpy for instance np.amin(array,0)
    arr = np.array([[4,3,2],[10,1,0],[5,8,24]])
    arr
    Output
    array([[ 4, 3, 2],
    [10, 1, 0],
    [ 5, 8, 24]])
    np.min(arr,0)
    Output = 4,1,0
    np.min(arr,1)
    Output = 2,0,5
    This makes no sense to me.
    Please make a video to help me understand this. Your videos on Python is by far THE best.

  • @prae.t4370
    @prae.t4370 2 года назад

    Great tutorial! Can you share the files used in the video as well? Would be a great supplement to follow along

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

      Thanks! Send me an email joedgoh@gmail.com

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

    how can i convert multiple images at a time using pillow

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

    Pleaase how to save 3d image to a file !!??

    • @joedgoh
      @joedgoh  2 года назад +1

      You can save it as an array using the NumPy save() method or using the PIL Image.save() method