#4 | Automated face blur from live camera feed | Android studio project | java | openCV 4.6.0

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

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

  • @ufukozturk5312
    @ufukozturk5312 6 месяцев назад +1

    you are the best

  • @sakibtahmid911
    @sakibtahmid911 Год назад +1

    wish u a great career

  • @codewitharib
    @codewitharib Год назад +1

    Give me RUclips link related to this openCV topic thank you 😊

  • @omtanna
    @omtanna Год назад +1

    How to convert OPENCV MAT image to BASE64 to send it for processing using API?

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

      Convert mat to bitmap
      Then bitmap to base64
      stackoverflow.com/questions/9224056/android-bitmap-to-base64-string

  • @meriemmari3108
    @meriemmari3108 Год назад +1

    the xml file that we did input inside raw when I want call it as in 2:39 it's came an error 🙁🙁

    • @tejau8371
      @tejau8371 Год назад +1

      same problem here . I am not able to add the file.

    • @michaeljamesrojas4481
      @michaeljamesrojas4481 Год назад +1

      sameee

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

      Share the error

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

      @@programming_hut The error is "Cannot resolve symbol 'lbpcascade_frontalface' '"

    • @BorisCollard
      @BorisCollard Год назад +1

      This error is due to Android Studio not indexing your resource files properly. You can solve this by either:
      - refreshing the caches: Click File -> Invalidate Caches
      - or rebuilding the project: Build -> Rebuild Project.
      The first solution solved the problem in my case.

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

    After adding detectMultiScale method to the cascadeclassifier app crashing getting error like OpenCV(4.8.0) Error: Parsing error (parseTag) in /data/user/0/in.user.face_recognition_open_cv/app_cascade/lbpcascade_frontalface.xml(6): Attribute name should be followed by '=', file /home/ci/opencv/modules/core/src/persistence_xml.cpp, line 733

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

    Could you please make automatic zoom on face detect?

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

      Try this
      Mat imageROI = new Mat(grayFrame,rectCrop);
      Or this
      Mat imageROI = grayFrame.submat(rectCrop);