Raspberry Pi LESSON 49: Understanding Images as Array Data Sets

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ธ.ค. 2024

ความคิดเห็น • 23

  • @drzwithcrow6075
    @drzwithcrow6075 ปีที่แล้ว +2

    This lesson reminds me of trying to program in basic (back in about '82-'84), creating image elements called 'imps' (4x4 pixels). Go Space Invaders!!!

  • @jameslewellen150
    @jameslewellen150 ปีที่แล้ว

    Missed the beginning, will restart it later. Thanks for the great content.

  • @victormultanen1981
    @victormultanen1981 ปีที่แล้ว +1

    so impressive topic to discuss, very needed!

  • @andrewnorburn
    @andrewnorburn ปีที่แล้ว

    Good lesson - great foundation on picture make up and arrays

  • @pedramfaraji8449
    @pedramfaraji8449 ปีที่แล้ว

    Perfect lesson Paul, marvelous thanks.

  • @LorenBurdette
    @LorenBurdette ปีที่แล้ว

    Really liked the lesson, appreciate the detailed explanation.

  • @stephenlightkep1621
    @stephenlightkep1621 ปีที่แล้ว +1

    Thanks Paul. This is one of them lessons that will click down the line as my brain cell multiplies.

  • @tntragan
    @tntragan ปีที่แล้ว

    I appreciate the detail and time you are putting into these lessons. I really want a thorough understanding of this and the way you are teaching is definitely fitting that bill. I hope you continue with the amount of details. This is mirroring some of the content on your artificial intelligence lessons and hearing it again is very helpful. I see in the future lessons that you have uploaded we are going to go even further into the artificial intelligence side which I am very excited about. Looking forward to where you are taking these lessons.

    • @paulmcwhorter
      @paulmcwhorter  ปีที่แล้ว

      Yes, you will see similar themes in these lessons, with things tailored to the Pi. One difference is, with the Pi we have access to the GPIO pins, so can do more with what we learn from the AI

  • @DrDave327
    @DrDave327 ปีที่แล้ว

    Great review, Paul! It was not too tedious at all. The basics are very important to do the advanced stuff well. Thank you!

  • @rorderuiter
    @rorderuiter 10 หลายเดือนก่อน

    This is really very interesting!

  • @markbooco1719
    @markbooco1719 ปีที่แล้ว

    Nice review! Well done too...Thanks

  • @amarbakshi2839
    @amarbakshi2839 ปีที่แล้ว

    Very good lesson Paul. Thank you for detailed explanation. I was wondering why the green color pixel output value was changing constantly if the color itself was constant (at around 32nd min of VDO)

  • @scottwait3585
    @scottwait3585 ปีที่แล้ว

    Thanks Paul!

  • @manfredgallei4194
    @manfredgallei4194 ปีที่แล้ว

    Thank you for the great tutorial. One thing is for me not completely clear. You mentioned in the b&w frame array 0=off (black) and 1=on (white). So far so good, but in the next section about grayscale you said 125 is gray (half black half white) and 255 is white). So that means closer to zero is more black and closer to 255 is more white. So far so good but how knows the program 1 is white or nearly black?
    Many thanks from Austria

  • @jyvben1520
    @jyvben1520 6 หลายเดือนก่อน

    python allows comment(s) in the array
    frame = [
    [[0,1,2],[3,4,5],[7,8,9]], # row 0
    [[10,11,12],[13,14,15],[17,18,19]], # row 1
    ]
    print( frame[1][2][1] ) # 18

  • @MrCameronMoore
    @MrCameronMoore ปีที่แล้ว

    If "tedious" is code for no one left behind, then I'm all for tedious

  • @richhoneyford9789
    @richhoneyford9789 ปีที่แล้ว

    Tedious but necessary. Get that muscle memory going.

  • @keithlohmeyer
    @keithlohmeyer ปีที่แล้ว

    Homework submitted th-cam.com/video/-R6FWh7SqKo/w-d-xo.html
    This was a good refresher from the AI lessons so I revisited the checker board project and added a twist to step it up a notch.
    Thanks Paul for another great lesson.

    • @paulmcwhorter
      @paulmcwhorter  ปีที่แล้ว

      Yes, you will see these lessons reinforce what we did in the AI class. But here, we have access to the GPIO pins, so can do cool things like the pan/tilt hat to actually track objects of interst. I am having lots of fun with this series.