Complete Face Recognition Project Using MATLAB (Data Collection, Model Creation And Testing)

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

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

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

    Data Collection:
    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
    Training model:
    clc
    clear all
    close all
    warning off
    g=alexnet;
    layers=g.Layers;
    layers(23)=fullyConnectedLayer(2);
    layers(25)=classificationLayer;
    allImages=imageDatastore('datastorage','IncludeSubfolders',true, 'LabelSource','foldernames');
    opts=trainingOptions('sgdm','InitialLearnRate',0.001,'MaxEpochs',20,'MiniBatchSize',64);
    myNet1=trainNetwork(allImages,layers,opts);
    save myNet1;
    Testing Model:
    clc;close;clear
    c=webcam;
    load myNet1;
    faceDetector=vision.CascadeObjectDetector;
    while true
    e=c.snapshot;
    bboxes =step(faceDetector,e);
    if(sum(sum(bboxes))~=0)
    es=imcrop(e,bboxes(1,:));
    es=imresize(es,[227 227]);
    label=classify(myNet1,es);
    image(e);
    title(char(label));
    drawnow;
    else
    image(e);
    title('No Face Detected');
    end
    end

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

      @@alsabtilaila1923 Tell me in detail where you are facing problem or getting error , so that I can help you :-)
      Note , first you need to install the AlexNet Support Package.

    • @niteshmani9889
      @niteshmani9889 4 года назад +2

      @@KnowledgeAmplifier1 Unable to resolve the name vision.CascadeObjectDetector
      brother i'm getting this error help me please tomorrow i've presentation

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

      @@niteshmani9889 Do you have the Computer Vision System Toolbox installed?

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

      @@KnowledgeAmplifier1 bro i've downloaded deep learning toolbox
      how to install CV system?

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

      @@niteshmani9889 There are options like download and install. It will do automatically. Try that to make thing simple

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

    Thanks for sharing I believe thousand of people will gain benefit from your sharing without have any secret. I run the code and its work!
    Thanks very much you have unlock the starting journey of research.

  • @michaelwassell5287
    @michaelwassell5287 3 года назад +5

    Yeah this is a very cool video, well done big man. Love how you get back to everyone's issues so quickly. Very attentive

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

      Thank You Michael Wassell for this motivational comment ! Happy Learning :-)

  • @alsabtilaila1923
    @alsabtilaila1923 4 года назад +8

    Thanks a lot, It is an amazing video... highly recommended

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

    SHAHRUKH......MY FAVOURITE HERO

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

    Sir ,please make another video regarding this project completely.....thanks for this content also.

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

    your matlab video helped us a lot in our project assignment ..thanks :D

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

    boy, you are great, from pak.

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

    "This is gold"
    Well done bro
    👏

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

    Great video
    Can u help me how I can change the code if I'm using the laptop camera

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

      Hello besmah mohammed, I used laptop camera only in this video 😊 All you need is --
      1)Webcam package (for installation , you can refer this video --ruclips.net/video/Tk1zWWPxWoE/видео.html)
      2)Temporary turn off Antivirus software

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

    thanks a lot for this video
    from morocco

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

    amazing code, and clearly explained! I was wondering if there's a way were we can draw over the captured picture and insert text on it.

  • @programminghunter8942
    @programminghunter8942 Год назад +4

    Perfect bro

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

    Reallly great job👌

  • @ayushanandsagar4701
    @ayushanandsagar4701 4 года назад +1

    Very helpful
    this video helped me at the moment I was stuck.
    thanks

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

      Welcome ayush anand Sagar
      . Glad to know that , the video helped you . Happy Coding :-)

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

      @@KnowledgeAmplifier1 in this if i want to create the folder of people and then store the faces how can I do that???
      like I first create folders for 10 people and the as per the user requirement I store the face images in that particular folder
      I'm stuck with this
      can u help me?

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

    This was very useful thank you sir

  • @rudrasankarbishnu3803
    @rudrasankarbishnu3803 4 месяца назад

    thanks brother its working, Thankyou so much

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  4 месяца назад

      @rudrasankarbishnu3803 you are welcome 👍Happy Learning :-)

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

    @Knowledge Amplifier: the data collection, training part was fine, but while executing the testing part it's unable to read file, showing error as 'cannot read file'. Plz help!

  • @Akuza_Sazaki
    @Akuza_Sazaki 8 месяцев назад

    Hello, hope you're still reading this video comment section because I got question.
    I want to put all the image taken in a subfolder named after the user by using the script commnad. for example, Database(parent folder)/{User'sname}(subfolder) using command script, then run the Data Collection script so that the image taken at that moment will be the user in front of the camera at the moment. I would like everything here in a command script or two. Thank you

  • @asifhossainshawon8033
    @asifhossainshawon8033 8 месяцев назад +1

    Thanks a lot dear. It works🤍

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  7 месяцев назад

      You're welcome @asifhossainshawon8033! Happy Learning :-)

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

    Thank you very much sir. Stay safe.

  • @opsygallore
    @opsygallore 2 года назад +2

    Hello , I'm working on similar project in school. While l looking at your training model on line the "g=alexnet", where did that come from? Cos you said something about pertained image. How can I configure that line in my program since I don't have an alexnet except the only captures I have.

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  3 месяца назад

      Hi @opsygallore, alexnet is a pretrained convolutional neural network that is 8 layers deep, we have applied Transfer Learning concept on this cnn in this project, you can refer to the "Download AlexNet Support Package" section in the following documentation link to install it in your MATLAB env:
      in.mathworks.com/help/deeplearning/ref/alexnet.html#bvnyo6s

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

    Sir... unable to find directry mynet1.error is coming... what should I do sir

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

      Please refer this answer -- www.mathworks.com/matlabcentral/answers/468783-error-using-load-unable-to-read-file-no-such-file-or-directory

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

    should i install matlab again if I didnt install deep learning toolbox earlier?

  • @nuraliaaqilamdzin9173
    @nuraliaaqilamdzin9173 3 года назад +5

    Hi, Knowledge Amplifier!!! I want to ask, how should I change the code if I collect images and put it in folder instead of using my webcam ?

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

    bro i am getting an error in training part
    Error using imageDatastore (line 125)
    Input folders or files contain non-standard file extensions.
    Use FileExtensions Name-Value pair to include the non-standard file extensions.
    Error in training (line 9)
    allImages=imageDatastore('database','IncludeSubfolders',true, 'LabelSource','foldernames');
    this the error please help

  • @AlAmin-mk3lw
    @AlAmin-mk3lw 2 года назад +2

    As I am using Laptop. I am not using using Webcam. For that reason I am facing some problems. What should I do now if I want to do the job by my laptop camera? What is the solution?

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

      Hello Al Amin 210 , sorry for the late reply , actually I also used Laptop camera only , no other camera 😊
      If you want to know how to install the package in your MATLAB , you can refer this --ruclips.net/video/Tk1zWWPxWoE/видео.html
      Happy Learning :-)

  • @jeannerossabrea5974
    @jeannerossabrea5974 3 года назад +2

    Hi! What code can I use if I want to add a condition wherein if I show a picture that is not registered folder it will display 'Unrecognized Face'?

    • @jasree778
      @jasree778 6 месяцев назад

      Hi did you find the code for this condition?

  • @منوعات-ي1ر9ظ
    @منوعات-ي1ر9ظ 4 года назад

    Thank you so much ... that's really helped me so much, but I need to that eyes Recognition using Daugman algorithm. How can I do it ?

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

    that's great video,
    may you tell us how to detect and recognize multiple face /object in one frame? as YOLO

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

    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

    • @bushraparween.
      @bushraparween. 2 года назад

      how u resolve this issue i am also getting same error . plz help

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

      Me also same error plz help

  • @Ramkumar-cr8yk
    @Ramkumar-cr8yk 4 месяца назад

    Can u help me how I can change the code if I'm using the external usb camera for my laptop

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

    Thanks a lot for your video. I want to print "face is not in database" if it is not present, can you please tell what to add in the code?

  • @Digital_Sea_05
    @Digital_Sea_05 6 месяцев назад +3

    It is giving an error unrecognised function or variable 'webcam'

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

      @Digital_Sea_05, you have to install webcam plugin, for details, you can refer this video -- ruclips.net/video/Tk1zWWPxWoE/видео.htmlsi=7WrjyfTCB350zP02

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

    Are you using extra camera or inbuilt camera

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

      Hi Sharan Sharanu, I used Laptop inbuilt Camera for this lab ..

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

    Do you know how to close windown webcam immediately when i press X on windown webcam?

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

      If the webcam object you are using to capture images is say 'cao' use the below command to close the webcam--
      clear cao;
      For details , you can refer this documentation --
      in.mathworks.com/help/supportpkg/usbwebcams/ug/acquire-images-from-webcams.html
      Hope this will be helfpul! Happy Learning & have a great year ahead 😊

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

    This really helps

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

      Glad to know the video is helpful to you Akinayo Akin! Happy Learning :-)

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

    basic matlab installation se ye project ho jaega na ya fir matlab ka pura package install krna parega?

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

    can you tell me how to do like this with python:
    detect an image on an application and if the image is not there search for the image again
    and if it's there then do something.

  • @jasree778
    @jasree778 6 месяцев назад

    Bro when an unknown picture is shown that is not in the database it still displaying any folder name from database how to fix this? It has to display unknown if face is present and not detected

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

    You are gorgeous! This helped me alot but I hope you can teach me how to get attendance report on an exel sheet or other pleace.
    I'm grateful to you and wish you further progress

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

      hey if you are done with this project please help me

  • @MuneshKumar-fq4pg
    @MuneshKumar-fq4pg 3 года назад

    in training model i waited for half an hour but mynet1 file has not been created and i cant move further what should i do

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

    Thank you so much bhaiya

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

    can i use this code for gait recognition? instead of it tracking face i want it to track the manner of walking. is this possible?

  • @jasree778
    @jasree778 9 месяцев назад

    Bro to understand these code what do we have to learn ? Deep learning?We had basic stimulating lab in second year but can't understand this code and all tools

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

    Hello, first of all, your video was very helpful, thank you very much. I do the same for my project assignment, but classifier.mat and myNet1.mat variables do not appear in my matlab. Can you help me? How will I fill those variable files?

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

    Brother please could you tell me which neutral network are you using?

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

    Thanks a lot for this video.
    How do I increase the database.like the number of faces in the database folder?we have used only two sets of images?

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

      If you want to increase number of faces for each case , then take more images i.e. you can increase the c value ( which I had taken 150 , you can take 200-300 according to your choice)
      To increase more output classes , use the same code to take images of different class

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

    Thank you sir

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

    hi i am getting this error. Error using webcam (line 13)
    MATLAB Support Package for Webcams has not been installed. Open Support Package Installer to install the
    Webcam Support Package.
    i am using crack version. i am unable to download the webcam package . how to rectify it?

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

    Brother , can u say which neural network are you using....Is it artificial or convolution...Pls mention it

  • @pepperloverr
    @pepperloverr 3 года назад +2

    Hello, I found this video very very useful.. but I am searching for 'Attendance Marking System' using MATLAB.
    can i get your help in that?

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

      Did you get attendance marking system

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

    Can you plz tell in which videos you have explained about the various terms like fullyconnectedlayer,imagedatastore,maxepochs that you have used in the training part?

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

    Did you had your software flowchart in this?

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

    Why did u use 23 and 25 as the layer.?can u explain the calculation? Plz.. Thnks in advance

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

    How to store the recognized face with time to make it as attendance register of suppose 50 employee on a particular day. Plz make a video with code for that.

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

    you have done in mat lab how its implemented in hardware level ? i need answer its urgent

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

    bro how to install deep learning toolbox...i tried to install but it says that administrator has restricted access to this mathworks product

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

    SORRY.......MIND CHANGED.....SALMAN BEST HERO NOW

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

    Thanks a lot sir for helping me for securing good mark in final year project. Lots of ❤❤❤❤❤❤❤ @knowledge amplifier

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

      Glad to hear that , the video helped you , 亗ENG么SAGAR ! Happy Learning :-)

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

      @@KnowledgeAmplifier1 thank you so much sir

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

      bro , matlab installation me koi problem nhi hua?

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

      @@satishshaw8423 koi problm nhi hua

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

      @@Soumya2724 kitne gb ki software h bhai? ar i3 ya ryzen 3 laptops support kregi na matlab??

  • @manishnayek6311
    @manishnayek6311 2 месяца назад +1

    thank u dada

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

    what part of the code should be modified in order to say "UNRECOGNIZED PERSON" when someone is not from the database? All the best

  • @Rajesh-mn1by
    @Rajesh-mn1by 2 года назад +1

    Bro one error is coming ,can you please solve it
    Error: Unable to open file "0.bmp" for writing. You might not have write permission

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

      Hello Rajesh , the error is appearing because you don't have the write permission to the correct folder where the image "0.bmp" should be written to...Please write to a directory you have write access to.

  • @rafiffikri8952
    @rafiffikri8952 4 года назад +1

    I have error on
    "Error using trainNetwork (line 64)
    The output size (2) of the last layer doesn't match the number of classes (1)"
    How can i fix that?

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

      Yeah, me too facing same error... please tell me how rectify this error.

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

    Bro I am having the code for face recognition using squeezenet but I want to implement it by collecting images using direct webcam. Help me with this bro

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

    Error using imwrite (line 454)
    Unable to open file "0.bmp" for writing. You might not have write permission.
    i have this issue

  • @bableal-iraqi1825
    @bableal-iraqi1825 3 года назад +1

    How to change the code to reveal people who are not in the database like the house thief

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

    sir,in training code we getting error like image datastorage file not matched plzzz sort out this problem.Hope you will give reply

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

    Is it possible to save the detected face

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

      Sorry for the late reply Pema, the answer of your question is yes , it's possible ... If you check the testing model code below , you can understand that in es variable , the cropped image part is present , so you can use imwrite function to write the image --
      clc;close;clear
      c=webcam;
      load myNet1;
      faceDetector=vision.CascadeObjectDetector;
      while true
      e=c.snapshot;
      bboxes =step(faceDetector,e);
      if(sum(sum(bboxes))~=0)
      es=imcrop(e,bboxes(1,:));
      es=imresize(es,[227 227]);
      label=classify(myNet1,es);
      image(e);
      title(char(label));
      drawnow;
      else
      image(e);
      title('No Face Detected');
      end
      end

  • @ayaabdelmoniem7555
    @ayaabdelmoniem7555 7 месяцев назад +1

    hello , can i used LAPTOP camera ? doyou used laptop camera or extera camera

    • @KnowledgeAmplifier1
      @KnowledgeAmplifier1  7 месяцев назад +1

      @ayaabdelmoniem7555 , I have used laptop camera only :-) Here is a reference video to install the matlab package which can help you to interact with laptop camera using MATLAB Coding -- ruclips.net/video/Tk1zWWPxWoE/видео.htmlsi=lIYg4-5eAFcH_Vqx

    • @ayaabdelmoniem7555
      @ayaabdelmoniem7555 7 месяцев назад

      @@KnowledgeAmplifier1 i used ubuntu 20.04 i installed web cam ,while i run code webcam window open but not show the picture (i cant see on me laptop what is camera see ) that show white window

    • @ayaabdelmoniem7555
      @ayaabdelmoniem7555 7 месяцев назад

      while i run i tested part of code i cant see the output , but while i run code to collection data it is take photo and saved it very will but the same problem does not show in window of camweb

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

    Hello sir,
    Is there a video for feature extraction to this project?

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

      Yes Lil, here is a video where I have explained how to extract learned image features from a pretrained convolutional neural network and use those features to train an image classifier--
      ruclips.net/video/mYF2GH-JMWs/видео.html
      (If you need only features , then just use upto feature extraction part , ignore the svm model training part)
      Same concept can be applied to train clustering models also--
      ruclips.net/video/7Hv8BY4RyGk/видео.html
      Hope this will be helpful! Happy Learning :-)

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

    Hello can you please tell me which algorithm you used in this video.

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

      Hello Hanzla Jafrani , I used the below algorithms --
      Viola-Jones algorithm for Face Detection to create Database--
      in.mathworks.com/help/vision/ref/vision.cascadeobjectdetector-system-object.html
      To train the mode , I used Transfer Learning using Alexnet--
      in.mathworks.com/help/deeplearning/ug/transfer-learning-using-alexnet.html
      Hope this will be helpful..Happy Learning :-)

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

    Unable to resolve the name vision.CascadeObjectDetector. getting this error, PLEASE HELP

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

    Bro ...Is this based on image processing or signal processing

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

      Hello Vijay Kalyan , it's based on Image Processing and an image is nothing more than a two dimensional signal , it's signal processing also 😊

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

      @@KnowledgeAmplifier1 thank you , can I took this project for signal processing because my domain is DSP

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

      @@vijaykalyan4815 yes , you can , and if you want to explore some sample projects only around 1d Signal Processing (generally what we study in DSP Subject during our B.Tech) , then here are few projects form which you might get some new idea -- qr.ae/pvbgcR
      Happy Learning

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

      @@KnowledgeAmplifier1 Thank you bro 🤗

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

      @@vijaykalyan4815 no problem , Happy Learning

  • @gyaanstotram
    @gyaanstotram Месяц назад

    hlo sir i need your guidance in making a project on face recognistion attendance system please respond

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

    Brother,which neural network are you using here? Artificial or convolutional neural network to train and test

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

      Hello Naveen Prasad, I am using AlexNet , which is convolutional neural network.
      For details , you can refer this link :
      in.mathworks.com/help/deeplearning/ref/alexnet.html
      Happy Learning :-)

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

      Bro error in g=alexnet (training model code) how 2 clear that?

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

    Please Please make a video on how to download Alexnet please much needed I loved this project wanna do it for my final year Mini project

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

      You can refer this link--
      in.mathworks.com/help/deeplearning/ref/alexnet.html
      Follow the steps , it's same like installing webcam support package .
      Happy Learning :-)

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

      @@KnowledgeAmplifier1 there is no download option only that's why I told you please make the video

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

      @@KnowledgeAmplifier1 you are making na ?

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

    Where I save testing model and training model..?

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

    I am getting errorDocCallback error . What should I do ?
    I didnot find the answer.

  • @MaLik-gz9vb
    @MaLik-gz9vb 2 года назад

    Can u plz help in speech recognition?

  • @jasree778
    @jasree778 6 месяцев назад

    How can we add attendance system to this program please tell us

  • @venusree3873
    @venusree3873 10 месяцев назад

    can i do the same for signature verification

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

    I have a crack version of Matlb2016ahere it says MATLAB Support Package for USB Webcams has not been installed. Open Support Package Installer to install the Webcam
    Support Package. now what to do

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

      Refer this--
      ruclips.net/video/Tk1zWWPxWoE/видео.html
      Happy Learning :-)

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

      @@KnowledgeAmplifier1 Now it shows to download since there is no install option I see for download webcam I need to create account after this it says type Activation Key which I don't know what is it ?

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

      @@KnowledgeAmplifier1 I did it it was optional , Thanksssalott

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

      Can you help Ankit in downloading this in my cracked version

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

    Bro getting error as 'undefined function alexnet' please help

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

      Hi Banushruti Haveri, you just need to download the AlexNet package to integrate the function into your matlab.
      You can find it in this link --
      www.mathworks.com/matlabcentral/fileexchange/59133-neural-network-toolbox-model-for-alexnet-network

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

      After downloading whether I have to put that file in the working directory location only?

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

    bro nice video! I have one important question. Can I do the same project on MATLAB on a Macbook m1? because I heard matlab is not smooth in macbook air m1

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

    will Matlab software work on i3 laptops?

  • @MuneshKumar-fq4pg
    @MuneshKumar-fq4pg 3 года назад

    Undefined variable "vision" or class "vision.CascadeObjectDetector".
    i am getting this error, how to handle it?

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

    Brother, thanks for ur project.can u pls share the documentation

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

      Hello Naveen Prasad
      , I have not created any documentation , I tried to show an application of Transfer Learning only..
      But here I am sharing the documentation of the major algorithms used , which might be helpful to you--
      Viola-Jones algorithm for Face Detection to create Database--
      in.mathworks.com/help/vision/ref/vision.cascadeobjectdetector-system-object.html
      To train the mode , I used Transfer Learning using Alexnet--
      in.mathworks.com/help/deeplearning/ug/transfer-learning-using-alexnet.html
      Hope this will be helpful..
      Happy Learning :-)

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

    getting an error :
    Error using imwrite (line 528)
    Unable to open file "0.bmp" for writing. You might not have write permission.

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

      change the location of matlab similar to his

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

    @Knowledge Amplifier can you please tell how to use this code in online matlab

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

      Prachi Sharma , you can try the same , just if webcam & alexent packages present , then it should work with little modifications as per requirements , but the approach , code , logic will be same.
      Happy Learning :-)

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

    Does this work on cracked version or MATLAB online

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

    Undefined function or variable 'alexnet'.
    Error in Untitled6 (line 3)
    g= alexnet;
    i have this error, can you give sollution

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

      That means , in your Computer , AlexNet is not installed. You have to download and install AlexNet first , go through this link for details:
      www.mathworks.com/help/deeplearning/ref/alexnet.html

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

      Thanks, i Will try

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

      How to download Alexnet

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

    Please make a video on Mrz scanner matlab project. I'm facing problems in matlab code.
    Please please please...

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

    Great work, but can't succeed to get matlab webcam plugin installed in crack :(

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

    Undefined function or variable 'alexnet'.
    What should I do now?

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

      Hello Syed Owais Ali Raza, check whether alexnet is downloaded and installed in your computer or not
      you have to install Alexnet first before using (you can refer the below link for more information )
      in.mathworks.com/help/deeplearning/ref/alexnet.html
      (Check "Download AlexNet Support Package" part)
      Hope this will be helpful..
      Happy Learning :-)

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

      Thanks for your reply.
      I tried to install Alexnet but it's getting the error "Neural Network Toolbox Model for AlexNet Network is not available for this release of MATLAB".

  • @mohammedalshaer-eq2bt
    @mohammedalshaer-eq2bt Год назад +1

    I have error in snapshot line , what exactly is the problem ?

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

      Hello mohammed alshaer , without more information about the context of your error , it's difficult to say exactly what the problem might be.

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

    *Error using faceDedector (line 10)
    Timeout occurred while trying to get a frame from the webcam.*
    iam getting this error , how can i proceed further???

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

      Sometime this error appears if the antivirus don't allow the code to access webcam , check that one once , if that is the reason then , please stop the webcam security from antivirus and try again.

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

    sir, if i have 4 different images how much layer i will write for train the model
    sir plz reply

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

      You can use the same code , but make sure , for all the different classes , you have good number of images for training :-)

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

      @@KnowledgeAmplifier1 how much above 200 or above

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

    hello sir do u have matlab fabric detection code?

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

    Bro the error i an facing is ( Use file extension name value pair to include the non standard file extensions)
    Help me out with this

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

      Check the file format (which you are using) is supported by MATLAB or not..