Matlab Codes list

Music Player with Hand Gesture Control using Neural Network

Gesture Recognition using Neural Network in MATLAB Part 3

Gesture Recognition using Neural Network in MATLAB Part 2

Gesture Recognition using Neural Network in MATLAB

People Counting System using face detection Code


Silent Password Creation using matlab

Kalman filter full code download

Play Computer games with hand gesture recognition using Matlab

Vehicle Counting System in Matlab

Screen Capture With Matlab

Bestfitness matlab code using neural network

Making a Photoviewer with GUI using Matlab

Building GUI with Matlab

Virtual Mouse using Hand gestures Matlab Code

Real time Video Recording and Save as AVI matlab code

Frames to AVI using Matlab Code

Capture and save Frames using Webcam matlab Code

Skin Detection Matlab Code

Face Detection Matlab Code

Controlling Keyboard switches with Matlab code

Extracting frames from a Video file Matlab Code

Moving Mouse Pointer using Matlab code

Controlling Mouse event using Matlab code




Motion Tracking using Kalman Filter Matlab Code


Motion Detection using Camshift algorithm Matlab code

RSA algorithm implementation using Matlab code



Client server program Matlab Code

Access Webcam using Matlab



54 comments:

  1. Hey please share your code request through comments,the requested code will be uploaded soon,thank u

    ReplyDelete
    Replies
    1. pls upload code of fake currency detection

      Delete
  2. virtual mouse using hand Gesture recognition

    ReplyDelete
    Replies
    1. Your request is processed,here is the url

      http://matlabnstuff.blogspot.in/2013/02/virtual-mouse-using-hand-gestures.html

      hope this will help you,thank you.

      Delete
  3. I would like to get a code for Hand gesture recognition or Speech/Word Recognition code using Matlab. Thank you!

    ReplyDelete
    Replies
    1. Sir,for any kind of recognition we need to use neural network i.e. machine leaning concept,so here code does not matter,so we have to train the machine,still I need some time then I'll upload a post if possible

      Delete
  4. I request you to post the code for vehicle counting system using a video without using computer vision toolbox. It will be of great use to me. thank u

    ReplyDelete
    Replies
    1. Well could not give the full code because much change was not needed,but have given the full idea,please have a look,here is the url :

      Click here

      Thank u :)

      Delete
    2. Thank you for your valuable information about matlab codes. Can you please provide full code of VEHICLE COUNTING SYSTEM without using computer vision toolbox.

      Delete
    3. I'm not getting it correct in the motion detection part. It shows error at the line no. 5 ( cd frames).
      My matlab version is R2008a. It doesnt support aviread. So can you give me a alternate solution??? Thanks for your support

      Delete
    4. Well it should work,if 'avirad' does not work u can use 'mmreader',i think for this particular case i wd b easier if u use kalman filter to track motion,i ve test it in matlab2011,and the prob wid 'cd frames',it is a prob with the path where u r saving the frames,first take an example video,then break it into frames,save into 'frames' folder then try it,do it if u still face some prob then ill post the motion code again...thanks for visiting again,have a good day :)

      Delete
    5. I have tried executing the kalman filter algorithm,but it displays a single rectangular box for a object only in the first frame and stops. It doesn't run further. What changes should I do to track it for the whole video?

      Delete
    6. Sir,can You help me out??? I terribly need to solve it

      Delete
    7. Try this one Click here

      I've run it today,its working perfectly...download the zip file and extract the .m file...keep the video in the same folder

      Delete
    8. @Aarthi Ramasamy is it working now???

      Delete
    9. yes yaar, it is working now. I have changed few coding here and there for reading the video in the mmreader. Where should I insert the other line of code?? I inserted that and it shows error at "cen"

      Delete
  5. yes yaar, it is working now. I have changed few coding here and there for reading the video in the mmreader. Where should i insert the other line of code??

    ReplyDelete
  6. Sir,I am in terrible need. Plz,can you please provide full code of VEHICLE COUNTING SYSTEM without using computer vision toolbox ?

    ReplyDelete
    Replies
    1. I've already uploaded the idea n method...u just combine those code...tell me if you face any prob at any stage

      Click here

      Delete
  7. Sir,can u upload code for pca technique in hand gesture recognition?

    ReplyDelete
  8. hi sir

    please upload full code for ""video segmentation based on motion coherence of particles in a video sequence""..

    I m a student..I have to submit this project in 8 days .. please send full code..If not possible send any matlab code for video segmentation with atleast 1 IEEE paper reference if possible..

    Thank you..Please help me..

    ReplyDelete
  9. Sir,I am in terrible need. Plz,can you please provide full code of SVM for vehicle classification

    ReplyDelete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Sir,I am in terrible need. Plz help me in interfacing and sending data from MATLAB TO 8051 microcontroller. Plz reply as soon as possible...

    ReplyDelete
  12. pls upload code to link matlab with any music player.

    ReplyDelete
  13. hye and good afternoon,

    did you happen to know about PSO algorithm for system state estimation? your help is much appreciated.

    ReplyDelete
  14. i work on train neural networks by bee algorithm and want code for training NN my email mmmay70@yahoo

    ReplyDelete
  15. can u provide code for single object tracking using edge based segmentation and shape matching in static background

    ReplyDelete
  16. hi, can please show the way to re-position the 3D mesh plot in figure window, so that the center of the plot is [0 0 0]? thanks in advance.

    ReplyDelete
  17. kindly could you hand gesture recognition in matlab code thanks

    ReplyDelete
  18. i need code for gesture recgnition plz, its my final year project.

    ReplyDelete
    Replies
    1. Well here it is...

      http://matlabnstuff.blogspot.in/2013/08/gesture-recognition-using-neural.html

      Delete
  19. sir, can u please help me with the crowd detection using image processing codes. your help is so much appreciated. thank you :)

    ReplyDelete
  20. hi...
    i am kiran and i am giving detail code fro crowd detection...

    I did Crowd and closeup detection for criket video using canny edge detection algorithm..
    it's simple ..
    steps : -
    1)just convert all frame into edge frame

    A=imread(imagepath);//read image
    c=rgb2gray(A);//convert to grayscale needed for canny algo.
    B=edge(c,'canny',0.1);//convert frame into edge frame
    B=uint8(B);
    B=~B;//invert frame color(black for edge and white for other)

    2)getting maximum pixel in row and column

    row=size(B,1);
    col=size(B,2);

    3) count black pixel that shows edge(0=black & 1=white)

    for i=1:row //for loop for total rows
    for j=1:col //for loop for total column
    if B(i,j)==0 //check B(i,j) pixel with 0(black color)
    count=count+1; //if black pixel then increment counter
    end
    end
    end

    4)calculating percentage of black pixel present into image

    total_pix=row*col; // total pixel
    PPEP=(count/total_pix)*100; // percentage of black pixel(PPEP)

    5) u decide u r own threshold by trial and error method thos gives better result to u..
    i choose 5.5 for criket vide and check with calculate black pixel

    if PPEP>5.5
    //if PPEP > 5.5 no of edge is more indicating crowd
    imwrite(A(image object that use on point 1),imagename);//crowd images
    else
    //if PPEP < 5.5 no of edge is less indicating closeup
    imwrite(A(image object that use on point 1),imagename);//closeup images
    end

    ReplyDelete
  21. please any share a code about" finding one small video clip into another video clip"
    ..
    i do this using convert video into frame and then compare frame and again convert them back to video but its too time consuming ..
    any one has optimum solution for this problem...
    please help me..

    ReplyDelete
    Replies
    1. Well sir,I think you are right you are doing frame by frame processing that is why it is that much slow,I have also tried this,same problems for me.

      I think you need to think in some other way,

      1. You can process the whole video at a time,adding a colored boundary when ever crowed is detected,then save it as video.avi or something then play.

      2. But I think in this case the best solution is neural network,gather some pics of crowd,train the network then use it on video...

      Delete
  22. hey please can someone help me with gesture controlling in music system using matlab ??

    ReplyDelete
    Replies
    1. http://matlabnstuff.blogspot.in/2013/08/music-player-with-hand-gesture-control.html

      See this link

      Delete
  23. can you upload me code for HOSVD based image fusion..

    ReplyDelete
  24. Sir, can you please help me with hand gesture controlling for PowerPoint Presentation using matlab ??

    ReplyDelete
  25. Sir, can you please help me out with sign language recognition. sign involving the use of both hands along with facial expression. eg. british sign language or indian sign language.

    ReplyDelete
  26. hai,

    i am Manu P M, can you help me to do project on 'Image Enhancement using fusion framework of Histogram equlisation and laplacian pyramid' using MATLAB.

    Thanks & Regards
    Manu P M


    ReplyDelete
  27. Can you provide me the code to recognize people from their face and highlight their name in real time video feed from web cam.

    ReplyDelete
  28. can you pls provide me the matlab code for hand gesture recognition using hmm or gmm....

    ReplyDelete
  29. plz sir can you please provide me the matlab code for face recogntion using dct and neural networks plz help me out

    ReplyDelete
  30. vehicle detection and speed estimation using image processing techniques. CAN YOU PLEASE give the code?

    ReplyDelete
  31. hello sir,please give me the code for detecting multiple moving objects like ball and car and calculate their speed.

    ReplyDelete
  32. Face recognition for biometric matlab code.

    ReplyDelete
  33. Hello i need code use of kalman filter for feature extraction of a still image

    ReplyDelete
  34. hi can u pls upload a image encryption and decryption matlab code based on blowfish algorithm

    ReplyDelete
  35. hello i need a matlab code for medical image reversible watermarking based on reversible contrast mapping. can please give the code.

    ReplyDelete
  36. any one pls help me to write a matlab code for image encryptio based on RC4 algorithm

    ReplyDelete