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
@@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.
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.
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
@@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?
@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!
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
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.
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
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
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?
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 :-)
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
@Digital_Sea_05, you have to install webcam plugin, for details, you can refer this video -- ruclips.net/video/Tk1zWWPxWoE/видео.htmlsi=7WrjyfTCB350zP02
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 😊
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.
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
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
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
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?
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
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?
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?
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.
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.
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
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 , 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
@@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
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
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 :-)
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 :-)
@@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
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 :-)
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 :-)
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 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 ?
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
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
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 :-)
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 :-)
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
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 :-)
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".
*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???
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.
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
@@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.
@@KnowledgeAmplifier1 Unable to resolve the name vision.CascadeObjectDetector
brother i'm getting this error help me please tomorrow i've presentation
@@niteshmani9889 Do you have the Computer Vision System Toolbox installed?
@@KnowledgeAmplifier1 bro i've downloaded deep learning toolbox
how to install CV system?
@@niteshmani9889 There are options like download and install. It will do automatically. Try that to make thing simple
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.
Glad to hear that Shah Khir! Happy Learning
Yeah this is a very cool video, well done big man. Love how you get back to everyone's issues so quickly. Very attentive
Thank You Michael Wassell for this motivational comment ! Happy Learning :-)
Thanks a lot, It is an amazing video... highly recommended
Thank You Alsabti Laila
. Happy Learning :-)
SHAHRUKH......MY FAVOURITE HERO
Sir ,please make another video regarding this project completely.....thanks for this content also.
your matlab video helped us a lot in our project assignment ..thanks :D
Thank You Syed Arman! Happy Learning :-)
boy, you are great, from pak.
"This is gold"
Well done bro
👏
Thank You kunal sharma! Happy Learning :-)
Great video
Can u help me how I can change the code if I'm using the laptop camera
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
thanks a lot for this video
from morocco
Glad it was helpful tarik benghannou! Happy Learning :-)
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.
Perfect bro
Thank you Programming Hunter! Happy Learning
Reallly great job👌
Thanks a lot 😊
Very helpful
this video helped me at the moment I was stuck.
thanks
Welcome ayush anand Sagar
. Glad to know that , the video helped you . Happy Coding :-)
@@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?
This was very useful thank you sir
You are welcome Meena Chidambaram! Happy Learning :-)
thanks brother its working, Thankyou so much
@rudrasankarbishnu3803 you are welcome 👍Happy Learning :-)
@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!
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
Thanks a lot dear. It works🤍
You're welcome @asifhossainshawon8033! Happy Learning :-)
Thank you very much sir. Stay safe.
Thanks, you too , Saikat Mukherjee! Happy Learning :-)
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.
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
Sir... unable to find directry mynet1.error is coming... what should I do sir
Please refer this answer -- www.mathworks.com/matlabcentral/answers/468783-error-using-load-unable-to-read-file-no-such-file-or-directory
should i install matlab again if I didnt install deep learning toolbox earlier?
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 ?
did u get it
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
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?
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 :-)
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'?
Hi did you find the code for this condition?
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 ?
that's great video,
may you tell us how to detect and recognize multiple face /object in one frame? as YOLO
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
how u resolve this issue i am also getting same error . plz help
Me also same error plz help
Can u help me how I can change the code if I'm using the external usb camera for my laptop
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?
It is giving an error unrecognised function or variable 'webcam'
@Digital_Sea_05, you have to install webcam plugin, for details, you can refer this video -- ruclips.net/video/Tk1zWWPxWoE/видео.htmlsi=7WrjyfTCB350zP02
Are you using extra camera or inbuilt camera
Hi Sharan Sharanu, I used Laptop inbuilt Camera for this lab ..
Do you know how to close windown webcam immediately when i press X on windown webcam?
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 😊
This really helps
Glad to know the video is helpful to you Akinayo Akin! Happy Learning :-)
basic matlab installation se ye project ho jaega na ya fir matlab ka pura package install krna parega?
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.
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
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
hey if you are done with this project please help me
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
Thank you so much bhaiya
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?
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
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?
Brother please could you tell me which neutral network are you using?
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?
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
Thank you sir
You are Welcome!!
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?
Brother , can u say which neural network are you using....Is it artificial or convolution...Pls mention it
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?
Did you get attendance marking system
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?
Did you had your software flowchart in this?
Why did u use 23 and 25 as the layer.?can u explain the calculation? Plz.. Thnks in advance
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.
you have done in mat lab how its implemented in hardware level ? i need answer its urgent
bro how to install deep learning toolbox...i tried to install but it says that administrator has restricted access to this mathworks product
SORRY.......MIND CHANGED.....SALMAN BEST HERO NOW
Thanks a lot sir for helping me for securing good mark in final year project. Lots of ❤❤❤❤❤❤❤ @knowledge amplifier
Glad to hear that , the video helped you , 亗ENG么SAGAR ! Happy Learning :-)
@@KnowledgeAmplifier1 thank you so much sir
bro , matlab installation me koi problem nhi hua?
@@satishshaw8423 koi problm nhi hua
@@Soumya2724 kitne gb ki software h bhai? ar i3 ya ryzen 3 laptops support kregi na matlab??
thank u dada
You are welcome !!
what part of the code should be modified in order to say "UNRECOGNIZED PERSON" when someone is not from the database? All the best
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
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.
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?
Yeah, me too facing same error... please tell me how rectify this error.
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
Error using imwrite (line 454)
Unable to open file "0.bmp" for writing. You might not have write permission.
i have this issue
How to change the code to reveal people who are not in the database like the house thief
sir,in training code we getting error like image datastorage file not matched plzzz sort out this problem.Hope you will give reply
Is it possible to save the detected face
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
hello , can i used LAPTOP camera ? doyou used laptop camera or extera camera
@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
@@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
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
Hello sir,
Is there a video for feature extraction to this project?
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 :-)
Hello can you please tell me which algorithm you used in this video.
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 :-)
Unable to resolve the name vision.CascadeObjectDetector. getting this error, PLEASE HELP
Bro ...Is this based on image processing or signal processing
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 😊
@@KnowledgeAmplifier1 thank you , can I took this project for signal processing because my domain is DSP
@@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
@@KnowledgeAmplifier1 Thank you bro 🤗
@@vijaykalyan4815 no problem , Happy Learning
hlo sir i need your guidance in making a project on face recognistion attendance system please respond
Brother,which neural network are you using here? Artificial or convolutional neural network to train and test
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 :-)
Bro error in g=alexnet (training model code) how 2 clear that?
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
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 :-)
@@KnowledgeAmplifier1 there is no download option only that's why I told you please make the video
@@KnowledgeAmplifier1 you are making na ?
Where I save testing model and training model..?
I am getting errorDocCallback error . What should I do ?
I didnot find the answer.
Can u plz help in speech recognition?
How can we add attendance system to this program please tell us
can i do the same for signature verification
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
Refer this--
ruclips.net/video/Tk1zWWPxWoE/видео.html
Happy Learning :-)
@@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 ?
@@KnowledgeAmplifier1 I did it it was optional , Thanksssalott
Can you help Ankit in downloading this in my cracked version
Bro getting error as 'undefined function alexnet' please help
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
After downloading whether I have to put that file in the working directory location only?
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
Yes you can , try it
will Matlab software work on i3 laptops?
Undefined variable "vision" or class "vision.CascadeObjectDetector".
i am getting this error, how to handle it?
Check whether computer vision toolbox is present or not..
Brother, thanks for ur project.can u pls share the documentation
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 :-)
getting an error :
Error using imwrite (line 528)
Unable to open file "0.bmp" for writing. You might not have write permission.
change the location of matlab similar to his
@Knowledge Amplifier can you please tell how to use this code in online matlab
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 :-)
Does this work on cracked version or MATLAB online
Undefined function or variable 'alexnet'.
Error in Untitled6 (line 3)
g= alexnet;
i have this error, can you give sollution
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
Thanks, i Will try
How to download Alexnet
Please make a video on Mrz scanner matlab project. I'm facing problems in matlab code.
Please please please...
Great work, but can't succeed to get matlab webcam plugin installed in crack :(
Undefined function or variable 'alexnet'.
What should I do now?
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 :-)
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".
I have error in snapshot line , what exactly is the problem ?
Hello mohammed alshaer , without more information about the context of your error , it's difficult to say exactly what the problem might be.
*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???
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.
sir, if i have 4 different images how much layer i will write for train the model
sir plz reply
You can use the same code , but make sure , for all the different classes , you have good number of images for training :-)
@@KnowledgeAmplifier1 how much above 200 or above
hello sir do u have matlab fabric detection code?
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
Check the file format (which you are using) is supported by MATLAB or not..