Face Tracking using MATALB without delay || let's dECodE ||

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

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

  • @BhavnaKumari-l6k
    @BhavnaKumari-l6k 7 หลายเดือนก่อน

    Too good Man!❤

  • @DanDan-kx4zv
    @DanDan-kx4zv 4 ปีที่แล้ว +3

    Video speed and Explanation is on point!👌 Great Job. Its really hard to find such great mathlab diy projects contents here on youtube.
    This channel is awesome. Keep em coming. Le's deCode!

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

      Thanks a lot 😊. Do share and like our videos..

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

    Great video, it helps me a lot, but it's really fast for me😂

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

    Hello I come from Vietnam.
    How to warn me if I doze off? Can you help me. Thank you so much!

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

    can u explain the code for face recognition with available test data set

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

    Nice Work! Can you help me for real time hand detection?

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

      Thank you..! I think there is no special command to detect hand. So we first place hand in mentioned position, then we can track it. If you still have any doubts DM to our IG account @lets_deoode_

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

    Nice and very informative video
    Why you people took only 10 points as threshold?

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

      Threshold can be any value, we took 10, if you want to take any other value you can, no problem in that. Thank you .....

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

      Thank you. All the best guys

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

    How to implement this project ?

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

      Means. How to deploy, where to deploy ?

  • @md.rezaulkabirparvez
    @md.rezaulkabirparvez 3 ปีที่แล้ว

    Can anyone tell me how i can use webcam in this code?????? load('Detector.mat');
    vidReader = VideoReader('.mp4');
    % VideoReader is for reading Video
    vidPlayer = vision.DeployableVideoPlayer;
    i = 1;
    results = struct('Boxes',[],'Scores',[]);
    while(hasFrame(vidReader))
    I = readFrame(vidReader);
    [bboxes, scores] = detect(detector,I);
    [~,idx] = max(scores);
    results(i).Boxes = bboxes;
    results(i).Scores = scores;
    annotation = sprintf('MASK' ,detector.ModelName,scores(idx));
    I = insertObjectAnnotation(I,'rectangle',bboxes(idx,:),annotation);
    step(vidPlayer,I);
    i =i+1;
    end
    results = struct2table(results);

  • @md.rezaulkabirparvez
    @md.rezaulkabirparvez 3 ปีที่แล้ว

    Can anyone tell me,,,,,,,load('Detector.mat');
    vidReader = VideoReader('.mp4');
    % VideoReader is for reading Video
    vidPlayer = vision.DeployableVideoPlayer;
    i = 1;
    results = struct('Boxes',[],'Scores',[]);
    while(hasFrame(vidReader))
    I = readFrame(vidReader);
    [bboxes, scores] = detect(detector,I);
    [~,idx] = max(scores);
    results(i).Boxes = bboxes;
    results(i).Scores = scores;
    annotation = sprintf('MASK' ,detector.ModelName,scores(idx));
    I = insertObjectAnnotation(I,'rectangle',bboxes(idx,:),annotation);
    step(vidPlayer,I);
    i =i+1;
    end
    results = struct2table(results);