Face Recognition Project in MATLAB using Transfer learning (with complete code)

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

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

  • @KnowledgeAmplifier1
    @KnowledgeAmplifier1  4 года назад +7

    Code to collect images of face:
    clc
    clear all
    close all
    warning off;
    cao=webcam;
    faceDetector=vision.CascadeObjectDetector;
    c=150;
    temp=0;
    while true
    e=cao.snapshot;
    bboxes =step(faceDetector,e);
    if(sum(sum(bboxes))~=0)
    if(temp>=c)
    break;
    else
    es=imcrop(e,bboxes(1,:));
    es=imresize(es,[227 227]);
    filename=strcat(num2str(temp),'.bmp');
    imwrite(es,filename);
    temp=temp+1;
    imshow(es);
    drawnow;
    end
    else
    imshow(e);
    drawnow;
    end
    end

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

    how do we register details of a person in code so that we can get output as the person appears infront of webcam it shows the name and registered details of that person

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

    how to calculate layer numbers..give the formula plz @Knowledge Amplifier

  • @raaedalmayali3685
    @raaedalmayali3685 4 года назад

    hello my dear , please , how can do face recognition on numbers of images like ORL dataset ?

  • @emaharchibong3857
    @emaharchibong3857 3 года назад

    I need a way to make matlab tell us whose faces in an image are in my database or not in my database, please, anyone should help...I want to do a presentation soon🙏

  • @russelmakurumure6214
    @russelmakurumure6214 3 года назад

    "Dot indexing is not supported for variables of this type" how do i deal with that error?

  • @A97S21
    @A97S21 3 года назад +1

    you r a great man

  • @ahamedhussain2424
    @ahamedhussain2424 3 года назад +1

    Bro If my laptop doesn't have web cam 🥺 if any projects is possible

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  3 года назад +3

      Hello Ahamed ,
      you can use ipcam if you want to build this kind of project & instead of taking photos from webcam , you can take from mobile phone!
      For example , you can check this video:
      ruclips.net/video/2iXvqmBbfOA/видео.html
      For details on ipcam , you can refer this documentation :
      in.mathworks.com/help/supportpkg/ipcamera/ug/ipcam.html
      There are many projects on Advanced Image Processing which you can do without webcam or ipcam kind of hardware tools
      for example:
      Digit recognition using MATLAB (Support Vector Machine + HOG)
      ruclips.net/video/PTt21i0I30o/видео.html
      Secrets Hidden in Images (LSB based Steganography) | MATLAB
      ruclips.net/video/ZXfNhSlXT0w/видео.html
      Dominant colors Extraction from an image using k-means clustering
      ruclips.net/video/WvyBwrxm5yE/видео.html
      Hope this will be helpful!
      Happy Learning :-)

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

    Send me complete coding of this project

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

      I already posed in the description box , you can check this video for in-depth explanation -- ruclips.net/video/BU4NHgxPyLE/видео.html Hope this will be helpful! Happy Learning 🙂

  • @shivangidubey4273
    @shivangidubey4273 3 года назад

    Error using imageDatastor (line 113)
    Input folders or files contain non-standard file extensions.
    Use FileExtensions Name-Value pair to include the non-standard file extensions.
    Please help with this error it is showing while training model

  • @kritipal3030
    @kritipal3030 3 года назад

    Sir where is the complete code of this program given???

  • @ahamedhussain2424
    @ahamedhussain2424 3 года назад

    Please help.me 🥺

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  3 года назад

      If you want help with this project , check the link in the description box , detail explanation present there..
      Hope that will be helpful.