Add watermark to multiple images with Opencv and Python

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

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

  • @digitalhope7369
    @digitalhope7369 3 ปีที่แล้ว

    Thank u so much to clear my doubt

  • @SmartphoneReview
    @SmartphoneReview 2 ปีที่แล้ว

    How to save this images new folder ?

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

    Hear is my subscription 👍👍

  • @thiruvaranganraja8266
    @thiruvaranganraja8266 7 หลายเดือนก่อน

    Is the logo created on photoshop?

  • @StefanoBallad
    @StefanoBallad 3 ปีที่แล้ว

    Great tutorial!

  • @难得糊涂-t2l
    @难得糊涂-t2l 3 ปีที่แล้ว

    With reference to all of your code, I managed to get the correct result.But now I want the watermark to be rotated 50 degrees counterclockwise. How do I do that? Everything else remains the same?Please let me know. Thank you very much

  • @asmadaroizi1307
    @asmadaroizi1307 2 ปีที่แล้ว

    thaaaaank uu ♥شكرا♥

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

    Can you define that logo size would be like 75 % size of the picture?

  • @strongcitytv6686
    @strongcitytv6686 3 ปีที่แล้ว

    I love you bro

  • @RoccoCampana
    @RoccoCampana 2 ปีที่แล้ว

    Does this keep meta data? I assume yes, but I dont want to assume.

    • @pysource-com
      @pysource-com  2 ปีที่แล้ว

      It won't keep metadata unfortunately, it will save a completely new image

  • @marwen2594
    @marwen2594 4 ปีที่แล้ว

    thanks for the great tutorial,
    Can you make a tutorial about how to track a moving object and know if this object is in ower left or right using the webcam .
    this tutorial will be very helpful for my graduation project

  • @khaitran9459
    @khaitran9459 4 ปีที่แล้ว

    Hello Im struggling to understand why the coordinate top_y is center_y - int(h_logo/2)
    Wouldn't doing center_y MINUS half the logo height make it a bottom coordinate? Please help me out

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

      OK I understand it now, to those who don't... the (0,0) coordinate of img is the very top left corner of itself and the further you go down from the (0,0) coordinate in the y-direction, the value of your new y coordinate will be larger. And so back to my original question, if you want to make the y-coordinate higher for your point, you must make it smaller.

  • @rashidabbasi6035
    @rashidabbasi6035 4 ปีที่แล้ว

    long time didnt see you , we are waiting for your new video.

  • @bennysobol2787
    @bennysobol2787 4 ปีที่แล้ว

    Please do a 3d reconstruction video

  • @womensfashiontrends5131
    @womensfashiontrends5131 3 ปีที่แล้ว

    Wow!!! You Are Great Bro... GBU

  • @dhruvdwivedy4192
    @dhruvdwivedy4192 4 ปีที่แล้ว

    Very nice and beautiful the way you explain.....😍😍😍
    Which software you used for screen recording and cam too? I also want to make videos on opencv like you. 😁😁😁

    • @pysource-com
      @pysource-com  4 ปีที่แล้ว +1

      I use Xsplit broadcaster or OBS..
      In my opinion xsplit has better colors for the webcam but you have to buy a license.
      OBS is quite good and it's free

    • @dhruvdwivedy4192
      @dhruvdwivedy4192 4 ปีที่แล้ว

      @@pysource-com thank you so much. 😍

  • @jaimebarrero2484
    @jaimebarrero2484 4 ปีที่แล้ว

    Excelente video.

  • @aouamchaimae6248
    @aouamchaimae6248 4 ปีที่แล้ว

    Thank you

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

    Imagemagick and bash can make this in 3 lines ;)

    • @yasminalmutairi8698
      @yasminalmutairi8698 4 ปีที่แล้ว

      Robert Klauco how?!

    • @rklauco
      @rklauco 4 ปีที่แล้ว

      @@yasminalmutairi8698 Sorry, only found the notification now :( Check this page: www.imagemagick.org/Usage/annotating/
      Scroll down to section "Overlaying Images".
      The examples are with GIFs, but it works same way with PNG format.
      Doing this repetitively for all jpg files in folder
      for i in $(ls -1 *.jpg); do composite -geometry +31+105 yourLogo.png $i ${i/\.jpg/_withLogo.jpg}; done

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

      Robert Klauco thanks