SlideShare a Scribd company logo
1 of 4
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 587
MOTION BASED ACTION RECOGNITION USING k-NEAREST
NEIGHBOR
Shikha.A.Biswas1
, Vasant.N.Bhonge2
1
M.E. Student, Branch Digital Electronics, Department of Electronics and Tele-communication, Shri Sant Gajanan
Maharaja College of Engineering, Shegaon, Sant Gadge Baba Amravati University, Maharashtra State, India.
2
Associate Professor, Branch Digital Electronics, Department of Electronics and Tele-communication, Shri Sant
Gajanan Maharaja College of Engineering, Shegaon, Sant Gadge Baba Amravati University ,Maharashtra State,
India.
Abstract
Analyzing the actions of a person from a video by using computer is termed as Action Recognition. This is an active research
topicin the area of computer vision. There are many applications of this research which include surveillance systems, patient
monitoring systems, human performance analysis, content-based image/video retrieval/storage, virtual reality. Although many
efficient applications are available of action recognition, the most active application domain in the area of computer vision
is to “look at people”. In this paper, motion feature is extracted because motion features can portray the moving direction of
human body and hence human actions can be effectively recognized by motion rather than other features such as color, texture or
shape. In the motion-based approach, the method that extracts motion of the human action such as motion blob, optical flow, FIR-
filtering or watershed transform are used for recognizing action. This paper presents a novel method of action recognition that
analyzes human movements directly from video. The overall system consists of major three steps: blob extraction, feature
extraction and action recognition. In the first step, the input video is preprocessed to extract the 2D blob. In the second step,
motion feature is extracted using optical flow and at last action is recognized using classifier k-Nearest Neighbor (kNN).
Keywords: Action Recognition, 2Dblob, Optical Flow, kNN
---------------------------------------------------------------------***---------------------------------------------------------------------
1. INTRODUCTION
Recognizing or understanding the actions of a person
from a video is the objective of action recognition.
The main objective of our method is to improve the
accuracy of recognition. Action recognition is classified into
four types: Object-level, Tracking-level, Pose-level &
Activity-level. Object-level recognize the locations of
object, Tracking-level recognize the object trajectories,
Pose-level recognize the pose of a person & Activity-level
recognize the activity of person.The major problems faced
in action recognition are: view-point variation: movement of
camera, temporal variation: Variation in duration and shift,
spatial variation: Different people perform the same action
in different ways.n our paper we present a method that
eliminates all the above problems by using the concept of
optical flow and kNN.
2. TOOL
The tool used for recognition is MATLAB, version
7.10.0(R2010a)
3. DATASETS
The datasets used for Action Recognition are KTH and
Weizmann. [9], [12]
Weizmann
It contains 10 types of actions performed by 9 subjects.
Thus it contains total 90 AVI videos, taken with a static
camera and static background and with a frame rate of 25
fps. Actions in this dataset include: bend, jack, run, side,
skip, wave1, wave2, jump, P-jump walk.
KTH
It contains 6 types of actions performed by 25 subjects in 4
homogenous backgrounds. Thus it contains total 600 AVI
videos, taken with a static camera over homogenous
backgrounds & with a frame rate of 25 fps. Actions in this
dataset include: walking, jogging, running, boxing, hand
waving, and hand clapping.
4. METHOD
The proposed method contains three main stages of
recognition:
Fig-1: Stages of Action Recognition
Blob
Extraction
Feature
Extraction
Action
Recognition
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 588
4.1 Blob Extraction
The most commonly used low-level feature for identifying
human action is 2D blob. Hence the first stage is called blob
extraction or segmentation or pre-processing stage
In this stage, the color video is first converted from RGB to
gray and then finally to binary. To remove the salt and
pepper noise, the gray scale video is first median filtered
and then is converted into binary using autothresholding.
Thus this stage divide the input video into two classes i.e.
foreground (activity of the human) called the 2D blob, and
background (empty frame). Then for enhancement, dilation
is done. In the dilation process, the binary video is dilated
by a structuring element (called mask or window) of size 3 x
3, 5 x 5 or 7 x 7.The structuring element of the proposed
method is shown below:
0 0 1 0 0
0 0 1 0 0
1 1 1 1 1
0 0 1 0 0
0 0 1 0 0
After dilation enhanced 2D blob is obtained. For fast and
extraction of the „motion‟ feature, enhancement is done. [2],
[5], [11]easy
The blob extraction is shown below:
Input frame dilated frame
Fig-2: Blob extraction
4.2 Feature Extraction
After segmentation process, the next stage is feature
extraction. In this stage mid-level feature „motion‟ is
extracted from the blob. Since the human action can be
effectively characterized by motion rather than other
features such as color, texture or shape, „motion‟ feature is
extracted from the blob.We use optical flow to estimate
motion. Optical flow estimates the direction and speed of
moving object from one video frame to another. There are
two methods to find the Optical flow Horn-Schunck or
Lucas-Kanade method. For floating point input Horn-
Schunck method is used and for fixed point input Lucas-
Kanade method is used. We use Lucas-Kanade method to
find the optical flow. [1], [7], [8]
The optical flow of input video frame is shown below:
Input frame dilated frame optical flow
Fig-3: Feature Extraction
4.3 Action Recognition
This is the last stage of action recognition. For recognition,
we use k Nearest Neighbor (kNN). [1], [3], [4], [6]
kNN is a standard classifier which is mostly used for
action recognition because it does not require any learning
process and also it is invariant against view-point, spatial
and temporal variations.
Before classification using kNN, the proposed method
computes the following steps:
i) First the centroid of the connected region in the optical
flow is computed. This is called Blob analysis.
ii) The dimension of Blob analysis is very large; hence to
reduce its dimension Principal Component Analysis (PCA)
is done. PCA is a technique which reduces the dimension of
large data sets.
iii) Then covariance matrix of PCA is found.
iv) Then eigenvalues (EVA) of the covariance matrix are
found.EVA measure the magnitude of the corresponding
relative motion. This is called the training data for
classification.
v) Then the nearest neighbor in the training data is searched
using the distance metric „Euclidean distance‟ of kNN.
vi) After k-Nearest Neighbor (kNN) search, they are
classified using kNN classifier. If the 1-NN is obtained for
each action in the dataset then it means that the action is
recognized.
vii) The result is also plotted using function „gscatter‟ to
observe the classification.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 589
5. FLOWCHART OF THE PROPOSED
METHOD
6. RESULTS
Input video
Dilated frame
Optical flow
Recognized output
Fig – 4: Recognition Result
Input Video
V
C
Blob Extraction
Extraction
C
Optical Flow
C
Blob Analysis
C
PCA
C
Find the
covariance matrix
C
Find its Eigen
values
C
kNN search
kNN classify
Recognized
output
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 590
7 DISCUSSION
By using the proposed method the accuracy of recognition
are shown below:
Table 1.Recognition using KTH Dataset
Type of
sequence
Total
seq
Correctly
Recognized
In %
walking 10 10 100
running 1010 100
hand waving 10 10 100
handclapping 10 10 100
Boxing 10 10 100
jogging 10 10 100
Σ = 60 Σ = 60 Avg =100
Average % of accuracy using KTH dataset is 100%.
Table 2.Recognition using Weizmann Dataset
Type of
sequence
Total seq Correctly
Recognized
In %
walk 9 9 100
run 9 9 100
jack 9 9 100
skip 9 9 100
side 9 9 100
bend 9 9 100
jump 9 9 100
pjump 9 9 100
wave 1 9 9 100
wave 2 9 9 100
Σ = 90 Σ = 90 Avg =100
Average % of accuracy using Weizmann dataset is 100%.
8. CONCLUSION
This paper has presented a motion-based approach for action
recognition. It has used 2D blob as low-level feature and
extracts mid-level feature „motion‟ from the blob using the
method Lucas Kanade of optical flow. The motion features
so obtained are classified using kNN classifier. The
advantage of using kNN is that it does not require any
learning process and also it is invariant against view-point,
temporal and spatial variations; hence its accuracy is good.
The average % of accuracy using the proposed method is
100% on Weizmann and KTH datasets.
REFERENCES
[1] S. Hari Kumar, P.Sivaprakash, “New Approach for
Action Recognition Using Motion based Features”,
Proceedings of 2013 IEEE Conference on Information and
Communication Technologies (ICT 2013), pp.1247-1252.
[2] Hetal Shah, N. C. Chauhan, “Recognition of Human
Actions in Video”, International Journal on Recent and
Innovation Trends in Computing and Communication
(IJRITCC) May 2013, ISSN 2321 -8169Volume 1,Issue 5,
pp.489 – 493.
[3] Xiaodong Yang and YingLi Tian, “Eigen Joints-based
Action Recognition Using Naïve-Bayes-Nearest-Neighbor”,
2012 IEEE, pp.14-19.
[4] Mi Zhang Alexander A. Sawchuk, “Motion Primitive-
Based Human Activity Recognition Using a Bag-of-
Features Approach”, IHI‟12, January 28–30, 2012, Miami,
Florida, USA.
[5] Muhammad Hameed Siddiqi, Muhammad Fahim,
Sungyoung Lee, Young-Koo Lee, “ Human Activity
Recognition Based on Morphological Dilation followed by
Watershed Transformation Method ”, 2010 International
Conference on Electronics and Information Engineering
(ICEIE 2010),Volume 2, 2010 IEEE,V2 433-V2 437.
[6] Ronald Poppe, “A survey on vision-based human action
recognition”, Science Direct Image and Vision Computing
28 (2010) 976–990.
[7] Mohiuddin Ahmad, Seong-Whan Lee, “Human action
recognition using shape and CLG-(Combined local-global)
motion flow from multi-view image sequences”, Science
Direct Pattern Recognition 41 (2008), 2237 – 2252.
[8] Mohiuddin Ahmad and Seong-Whan Lee, “HMM-based
Human Action Recognition Using Multiview Image
Sequences”, Proceedings of the 18th International
Conference on Pattern Recognition (ICPR'06), 2006 IEEE.
[9] Moshe Blank, Lena Gorelick, Eli Shechtman, Michal
Irani, Ronen Basri, “ Actions as space–time shapes”,
Proceedings of the International Conference On Computer
Vision (ICCV‟05), vol. 2, Beijing, China, October 2005, pp.
1395– 1402.
[10] O. Masoud and N. Papanikolopoulos, “A method for
human action recognition,” IVC, Vol. 21, 2003, pp.729-743.
[11] J. K. Aggarwal and Q. Cai, “Human Motion Analysis:
A Review”, idealibrary: Computer Vision and Image
Understanding,Vol. 73, No. 3, March 1999, pp. 428–440.
[12] http://www.nada.kth.se/cvap/actions

More Related Content

What's hot

Conference research paper_target_tracking
Conference research paper_target_trackingConference research paper_target_tracking
Conference research paper_target_trackingpatrobadri
 
Frequency Domain Blockiness and Blurriness Meter for Image Quality Assessment
Frequency Domain Blockiness and Blurriness Meter for Image Quality AssessmentFrequency Domain Blockiness and Blurriness Meter for Image Quality Assessment
Frequency Domain Blockiness and Blurriness Meter for Image Quality AssessmentCSCJournals
 
26.motion and feature based person tracking
26.motion and feature based person tracking26.motion and feature based person tracking
26.motion and feature based person trackingsajit1975
 
Survey on Single image Super Resolution Techniques
Survey on Single image Super Resolution TechniquesSurvey on Single image Super Resolution Techniques
Survey on Single image Super Resolution TechniquesIOSR Journals
 
Successive Geometric Center Based Dynamic Signature Recognition
Successive Geometric Center Based Dynamic Signature RecognitionSuccessive Geometric Center Based Dynamic Signature Recognition
Successive Geometric Center Based Dynamic Signature RecognitionDr. Vinayak Bharadi
 
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...IOSR Journals
 
Signature recognition using clustering techniques dissertati
Signature recognition using clustering techniques dissertatiSignature recognition using clustering techniques dissertati
Signature recognition using clustering techniques dissertatiDr. Vinayak Bharadi
 
A Novel Approach to Image Denoising and Image in Painting
A Novel Approach to Image Denoising and Image in PaintingA Novel Approach to Image Denoising and Image in Painting
A Novel Approach to Image Denoising and Image in PaintingEswar Publications
 
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHM
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHMPERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHM
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHMAM Publications
 
An Object Detection, Tracking And Parametric Classification– A Review
An Object Detection, Tracking And Parametric Classification– A ReviewAn Object Detection, Tracking And Parametric Classification– A Review
An Object Detection, Tracking And Parametric Classification– A ReviewIRJET Journal
 
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNIC
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNICREVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNIC
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNICpriyanka singh
 
IRJET- A Comparative Review of Satellite Image Super Resolution Techniques
IRJET- A Comparative Review of Satellite Image Super Resolution TechniquesIRJET- A Comparative Review of Satellite Image Super Resolution Techniques
IRJET- A Comparative Review of Satellite Image Super Resolution TechniquesIRJET Journal
 
Image Deblurring using L0 Sparse and Directional Filters
Image Deblurring using L0 Sparse and Directional FiltersImage Deblurring using L0 Sparse and Directional Filters
Image Deblurring using L0 Sparse and Directional FiltersCSCJournals
 
Digital Image Watermarking using Discrete Wavelet Transform
Digital Image Watermarking using Discrete Wavelet TransformDigital Image Watermarking using Discrete Wavelet Transform
Digital Image Watermarking using Discrete Wavelet TransformIRJET Journal
 
[G4]image deblurring, seeing the invisible
[G4]image deblurring, seeing the invisible[G4]image deblurring, seeing the invisible
[G4]image deblurring, seeing the invisibleNAVER D2
 
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...csandit
 

What's hot (20)

Conference research paper_target_tracking
Conference research paper_target_trackingConference research paper_target_tracking
Conference research paper_target_tracking
 
Frequency Domain Blockiness and Blurriness Meter for Image Quality Assessment
Frequency Domain Blockiness and Blurriness Meter for Image Quality AssessmentFrequency Domain Blockiness and Blurriness Meter for Image Quality Assessment
Frequency Domain Blockiness and Blurriness Meter for Image Quality Assessment
 
Z03301550160
Z03301550160Z03301550160
Z03301550160
 
C04841417
C04841417C04841417
C04841417
 
26.motion and feature based person tracking
26.motion and feature based person tracking26.motion and feature based person tracking
26.motion and feature based person tracking
 
Survey on Single image Super Resolution Techniques
Survey on Single image Super Resolution TechniquesSurvey on Single image Super Resolution Techniques
Survey on Single image Super Resolution Techniques
 
Successive Geometric Center Based Dynamic Signature Recognition
Successive Geometric Center Based Dynamic Signature RecognitionSuccessive Geometric Center Based Dynamic Signature Recognition
Successive Geometric Center Based Dynamic Signature Recognition
 
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
 
Signature recognition using clustering techniques dissertati
Signature recognition using clustering techniques dissertatiSignature recognition using clustering techniques dissertati
Signature recognition using clustering techniques dissertati
 
A Novel Approach to Image Denoising and Image in Painting
A Novel Approach to Image Denoising and Image in PaintingA Novel Approach to Image Denoising and Image in Painting
A Novel Approach to Image Denoising and Image in Painting
 
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHM
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHMPERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHM
PERFORMANCE EVALUATION OF SPATIAL AND FRACTAL WATERMARKING ALGORITHM
 
Af35178182
Af35178182Af35178182
Af35178182
 
An Object Detection, Tracking And Parametric Classification– A Review
An Object Detection, Tracking And Parametric Classification– A ReviewAn Object Detection, Tracking And Parametric Classification– A Review
An Object Detection, Tracking And Parametric Classification– A Review
 
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNIC
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNICREVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNIC
REVIEW ON SECRET IMAGE SHARING USING QR CODE GENERATION TECHNIC
 
IRJET- A Comparative Review of Satellite Image Super Resolution Techniques
IRJET- A Comparative Review of Satellite Image Super Resolution TechniquesIRJET- A Comparative Review of Satellite Image Super Resolution Techniques
IRJET- A Comparative Review of Satellite Image Super Resolution Techniques
 
Image Deblurring using L0 Sparse and Directional Filters
Image Deblurring using L0 Sparse and Directional FiltersImage Deblurring using L0 Sparse and Directional Filters
Image Deblurring using L0 Sparse and Directional Filters
 
Digital Image Watermarking using Discrete Wavelet Transform
Digital Image Watermarking using Discrete Wavelet TransformDigital Image Watermarking using Discrete Wavelet Transform
Digital Image Watermarking using Discrete Wavelet Transform
 
[G4]image deblurring, seeing the invisible
[G4]image deblurring, seeing the invisible[G4]image deblurring, seeing the invisible
[G4]image deblurring, seeing the invisible
 
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...
ROBUST COLOUR IMAGE WATERMARKING SCHEME BASED ON FEATURE POINTS AND IMAGE NOR...
 
PhD_ppt_2012
PhD_ppt_2012PhD_ppt_2012
PhD_ppt_2012
 

Viewers also liked

Präsentation zielona gora_12052016_new
Präsentation zielona gora_12052016_newPräsentation zielona gora_12052016_new
Präsentation zielona gora_12052016_newFundacja "Merkury"
 
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...Fundacja "Merkury"
 
Desde la llegada al poder del presidente hugo chávez frías
Desde la llegada al poder del presidente hugo chávez fríasDesde la llegada al poder del presidente hugo chávez frías
Desde la llegada al poder del presidente hugo chávez fríasrosym
 
Subregion Sudecki nowym obszarem wzrostu Województwa Dolnośląskiego
Subregion Sudecki nowym obszarem wzrostu Województwa DolnośląskiegoSubregion Sudecki nowym obszarem wzrostu Województwa Dolnośląskiego
Subregion Sudecki nowym obszarem wzrostu Województwa DolnośląskiegoFundacja "Merkury"
 
City of Kitchener Utilities and Property Tax : A City's Transformation Story
City of Kitchener Utilities and Property Tax : A City's Transformation StoryCity of Kitchener Utilities and Property Tax : A City's Transformation Story
City of Kitchener Utilities and Property Tax : A City's Transformation StoryCapgemini
 
Néon, 1ère exposition internationale à la maison rouge
Néon, 1ère exposition internationale à la maison rougeNéon, 1ère exposition internationale à la maison rouge
Néon, 1ère exposition internationale à la maison rougeActif Signal
 
Actif signal – iso 14001
Actif signal – iso 14001Actif signal – iso 14001
Actif signal – iso 14001Actif Signal
 

Viewers also liked (13)

Hiring "Account Manager - Finance"
Hiring "Account Manager - Finance"Hiring "Account Manager - Finance"
Hiring "Account Manager - Finance"
 
Präsentation zielona gora_12052016_new
Präsentation zielona gora_12052016_newPräsentation zielona gora_12052016_new
Präsentation zielona gora_12052016_new
 
Colisões
ColisõesColisões
Colisões
 
Carta modelo
Carta modeloCarta modelo
Carta modelo
 
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...
II posiedzenie Komitetu Sterującego ds. Strategii Rozwoju Województwa Dolnośl...
 
Urbact in zielona góra 2016
Urbact in zielona góra 2016Urbact in zielona góra 2016
Urbact in zielona góra 2016
 
Desde la llegada al poder del presidente hugo chávez frías
Desde la llegada al poder del presidente hugo chávez fríasDesde la llegada al poder del presidente hugo chávez frías
Desde la llegada al poder del presidente hugo chávez frías
 
Subregion Sudecki nowym obszarem wzrostu Województwa Dolnośląskiego
Subregion Sudecki nowym obszarem wzrostu Województwa DolnośląskiegoSubregion Sudecki nowym obszarem wzrostu Województwa Dolnośląskiego
Subregion Sudecki nowym obszarem wzrostu Województwa Dolnośląskiego
 
City of Kitchener Utilities and Property Tax : A City's Transformation Story
City of Kitchener Utilities and Property Tax : A City's Transformation StoryCity of Kitchener Utilities and Property Tax : A City's Transformation Story
City of Kitchener Utilities and Property Tax : A City's Transformation Story
 
Néon, 1ère exposition internationale à la maison rouge
Néon, 1ère exposition internationale à la maison rougeNéon, 1ère exposition internationale à la maison rouge
Néon, 1ère exposition internationale à la maison rouge
 
Cloud Gaming
Cloud GamingCloud Gaming
Cloud Gaming
 
Actif signal – iso 14001
Actif signal – iso 14001Actif signal – iso 14001
Actif signal – iso 14001
 
Mision
MisionMision
Mision
 

Similar to Motion based action recognition using k nearest neighbor

Motion based action recognition using k nearest neighbor
Motion based action recognition using k nearest neighborMotion based action recognition using k nearest neighbor
Motion based action recognition using k nearest neighboreSAT Publishing House
 
Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...eSAT Publishing House
 
IRJET - Object Detection and Translation for Blind People using Deep Learning
IRJET - Object Detection and Translation for Blind People using Deep LearningIRJET - Object Detection and Translation for Blind People using Deep Learning
IRJET - Object Detection and Translation for Blind People using Deep LearningIRJET Journal
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET Journal
 
A survey on efficient no reference blur estimation methods
A survey on efficient no reference blur estimation methodsA survey on efficient no reference blur estimation methods
A survey on efficient no reference blur estimation methodseSAT Journals
 
A survey on efficient no reference blur estimation
A survey on efficient no reference blur estimationA survey on efficient no reference blur estimation
A survey on efficient no reference blur estimationeSAT Publishing House
 
Review On Different Feature Extraction Algorithms
Review On Different Feature Extraction AlgorithmsReview On Different Feature Extraction Algorithms
Review On Different Feature Extraction AlgorithmsIRJET Journal
 
IRJET- Estimation of Crowd Count in a Heavily Occulated Regions
IRJET-  	  Estimation of Crowd Count in a Heavily Occulated RegionsIRJET-  	  Estimation of Crowd Count in a Heavily Occulated Regions
IRJET- Estimation of Crowd Count in a Heavily Occulated RegionsIRJET Journal
 
Human action recognition using local space time features and adaboost svm
Human action recognition using local space time features and adaboost svmHuman action recognition using local space time features and adaboost svm
Human action recognition using local space time features and adaboost svmeSAT Publishing House
 
Survey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesSurvey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesIRJET Journal
 
Flow Trajectory Approach for Human Action Recognition
Flow Trajectory Approach for Human Action RecognitionFlow Trajectory Approach for Human Action Recognition
Flow Trajectory Approach for Human Action RecognitionIRJET Journal
 
Human Action Recognition Using Deep Learning
Human Action Recognition Using Deep LearningHuman Action Recognition Using Deep Learning
Human Action Recognition Using Deep LearningIRJET Journal
 
Object Single Frame Using YOLO Model
Object Single Frame Using YOLO ModelObject Single Frame Using YOLO Model
Object Single Frame Using YOLO ModelIRJET Journal
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET Journal
 
Trajectory Based Unusual Human Movement Identification for ATM System
	 Trajectory Based Unusual Human Movement Identification for ATM System	 Trajectory Based Unusual Human Movement Identification for ATM System
Trajectory Based Unusual Human Movement Identification for ATM SystemIRJET Journal
 
Gait Recognition using MDA, LDA, BPNN and SVM
Gait Recognition using MDA, LDA, BPNN and SVMGait Recognition using MDA, LDA, BPNN and SVM
Gait Recognition using MDA, LDA, BPNN and SVMIJEEE
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domaineSAT Journals
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domaineSAT Publishing House
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domaineSAT Publishing House
 

Similar to Motion based action recognition using k nearest neighbor (20)

Motion based action recognition using k nearest neighbor
Motion based action recognition using k nearest neighborMotion based action recognition using k nearest neighbor
Motion based action recognition using k nearest neighbor
 
Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...
 
IRJET - Object Detection and Translation for Blind People using Deep Learning
IRJET - Object Detection and Translation for Blind People using Deep LearningIRJET - Object Detection and Translation for Blind People using Deep Learning
IRJET - Object Detection and Translation for Blind People using Deep Learning
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
 
A survey on efficient no reference blur estimation methods
A survey on efficient no reference blur estimation methodsA survey on efficient no reference blur estimation methods
A survey on efficient no reference blur estimation methods
 
A survey on efficient no reference blur estimation
A survey on efficient no reference blur estimationA survey on efficient no reference blur estimation
A survey on efficient no reference blur estimation
 
Review On Different Feature Extraction Algorithms
Review On Different Feature Extraction AlgorithmsReview On Different Feature Extraction Algorithms
Review On Different Feature Extraction Algorithms
 
IRJET- Estimation of Crowd Count in a Heavily Occulated Regions
IRJET-  	  Estimation of Crowd Count in a Heavily Occulated RegionsIRJET-  	  Estimation of Crowd Count in a Heavily Occulated Regions
IRJET- Estimation of Crowd Count in a Heavily Occulated Regions
 
Human action recognition using local space time features and adaboost svm
Human action recognition using local space time features and adaboost svmHuman action recognition using local space time features and adaboost svm
Human action recognition using local space time features and adaboost svm
 
Thesis_Oral
Thesis_OralThesis_Oral
Thesis_Oral
 
Survey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesSurvey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization Techniques
 
Flow Trajectory Approach for Human Action Recognition
Flow Trajectory Approach for Human Action RecognitionFlow Trajectory Approach for Human Action Recognition
Flow Trajectory Approach for Human Action Recognition
 
Human Action Recognition Using Deep Learning
Human Action Recognition Using Deep LearningHuman Action Recognition Using Deep Learning
Human Action Recognition Using Deep Learning
 
Object Single Frame Using YOLO Model
Object Single Frame Using YOLO ModelObject Single Frame Using YOLO Model
Object Single Frame Using YOLO Model
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
 
Trajectory Based Unusual Human Movement Identification for ATM System
	 Trajectory Based Unusual Human Movement Identification for ATM System	 Trajectory Based Unusual Human Movement Identification for ATM System
Trajectory Based Unusual Human Movement Identification for ATM System
 
Gait Recognition using MDA, LDA, BPNN and SVM
Gait Recognition using MDA, LDA, BPNN and SVMGait Recognition using MDA, LDA, BPNN and SVM
Gait Recognition using MDA, LDA, BPNN and SVM
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLManishPatel169454
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 

Recently uploaded (20)

VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 

Motion based action recognition using k nearest neighbor

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 587 MOTION BASED ACTION RECOGNITION USING k-NEAREST NEIGHBOR Shikha.A.Biswas1 , Vasant.N.Bhonge2 1 M.E. Student, Branch Digital Electronics, Department of Electronics and Tele-communication, Shri Sant Gajanan Maharaja College of Engineering, Shegaon, Sant Gadge Baba Amravati University, Maharashtra State, India. 2 Associate Professor, Branch Digital Electronics, Department of Electronics and Tele-communication, Shri Sant Gajanan Maharaja College of Engineering, Shegaon, Sant Gadge Baba Amravati University ,Maharashtra State, India. Abstract Analyzing the actions of a person from a video by using computer is termed as Action Recognition. This is an active research topicin the area of computer vision. There are many applications of this research which include surveillance systems, patient monitoring systems, human performance analysis, content-based image/video retrieval/storage, virtual reality. Although many efficient applications are available of action recognition, the most active application domain in the area of computer vision is to “look at people”. In this paper, motion feature is extracted because motion features can portray the moving direction of human body and hence human actions can be effectively recognized by motion rather than other features such as color, texture or shape. In the motion-based approach, the method that extracts motion of the human action such as motion blob, optical flow, FIR- filtering or watershed transform are used for recognizing action. This paper presents a novel method of action recognition that analyzes human movements directly from video. The overall system consists of major three steps: blob extraction, feature extraction and action recognition. In the first step, the input video is preprocessed to extract the 2D blob. In the second step, motion feature is extracted using optical flow and at last action is recognized using classifier k-Nearest Neighbor (kNN). Keywords: Action Recognition, 2Dblob, Optical Flow, kNN ---------------------------------------------------------------------***--------------------------------------------------------------------- 1. INTRODUCTION Recognizing or understanding the actions of a person from a video is the objective of action recognition. The main objective of our method is to improve the accuracy of recognition. Action recognition is classified into four types: Object-level, Tracking-level, Pose-level & Activity-level. Object-level recognize the locations of object, Tracking-level recognize the object trajectories, Pose-level recognize the pose of a person & Activity-level recognize the activity of person.The major problems faced in action recognition are: view-point variation: movement of camera, temporal variation: Variation in duration and shift, spatial variation: Different people perform the same action in different ways.n our paper we present a method that eliminates all the above problems by using the concept of optical flow and kNN. 2. TOOL The tool used for recognition is MATLAB, version 7.10.0(R2010a) 3. DATASETS The datasets used for Action Recognition are KTH and Weizmann. [9], [12] Weizmann It contains 10 types of actions performed by 9 subjects. Thus it contains total 90 AVI videos, taken with a static camera and static background and with a frame rate of 25 fps. Actions in this dataset include: bend, jack, run, side, skip, wave1, wave2, jump, P-jump walk. KTH It contains 6 types of actions performed by 25 subjects in 4 homogenous backgrounds. Thus it contains total 600 AVI videos, taken with a static camera over homogenous backgrounds & with a frame rate of 25 fps. Actions in this dataset include: walking, jogging, running, boxing, hand waving, and hand clapping. 4. METHOD The proposed method contains three main stages of recognition: Fig-1: Stages of Action Recognition Blob Extraction Feature Extraction Action Recognition
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 588 4.1 Blob Extraction The most commonly used low-level feature for identifying human action is 2D blob. Hence the first stage is called blob extraction or segmentation or pre-processing stage In this stage, the color video is first converted from RGB to gray and then finally to binary. To remove the salt and pepper noise, the gray scale video is first median filtered and then is converted into binary using autothresholding. Thus this stage divide the input video into two classes i.e. foreground (activity of the human) called the 2D blob, and background (empty frame). Then for enhancement, dilation is done. In the dilation process, the binary video is dilated by a structuring element (called mask or window) of size 3 x 3, 5 x 5 or 7 x 7.The structuring element of the proposed method is shown below: 0 0 1 0 0 0 0 1 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 0 0 After dilation enhanced 2D blob is obtained. For fast and extraction of the „motion‟ feature, enhancement is done. [2], [5], [11]easy The blob extraction is shown below: Input frame dilated frame Fig-2: Blob extraction 4.2 Feature Extraction After segmentation process, the next stage is feature extraction. In this stage mid-level feature „motion‟ is extracted from the blob. Since the human action can be effectively characterized by motion rather than other features such as color, texture or shape, „motion‟ feature is extracted from the blob.We use optical flow to estimate motion. Optical flow estimates the direction and speed of moving object from one video frame to another. There are two methods to find the Optical flow Horn-Schunck or Lucas-Kanade method. For floating point input Horn- Schunck method is used and for fixed point input Lucas- Kanade method is used. We use Lucas-Kanade method to find the optical flow. [1], [7], [8] The optical flow of input video frame is shown below: Input frame dilated frame optical flow Fig-3: Feature Extraction 4.3 Action Recognition This is the last stage of action recognition. For recognition, we use k Nearest Neighbor (kNN). [1], [3], [4], [6] kNN is a standard classifier which is mostly used for action recognition because it does not require any learning process and also it is invariant against view-point, spatial and temporal variations. Before classification using kNN, the proposed method computes the following steps: i) First the centroid of the connected region in the optical flow is computed. This is called Blob analysis. ii) The dimension of Blob analysis is very large; hence to reduce its dimension Principal Component Analysis (PCA) is done. PCA is a technique which reduces the dimension of large data sets. iii) Then covariance matrix of PCA is found. iv) Then eigenvalues (EVA) of the covariance matrix are found.EVA measure the magnitude of the corresponding relative motion. This is called the training data for classification. v) Then the nearest neighbor in the training data is searched using the distance metric „Euclidean distance‟ of kNN. vi) After k-Nearest Neighbor (kNN) search, they are classified using kNN classifier. If the 1-NN is obtained for each action in the dataset then it means that the action is recognized. vii) The result is also plotted using function „gscatter‟ to observe the classification.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 589 5. FLOWCHART OF THE PROPOSED METHOD 6. RESULTS Input video Dilated frame Optical flow Recognized output Fig – 4: Recognition Result Input Video V C Blob Extraction Extraction C Optical Flow C Blob Analysis C PCA C Find the covariance matrix C Find its Eigen values C kNN search kNN classify Recognized output
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 590 7 DISCUSSION By using the proposed method the accuracy of recognition are shown below: Table 1.Recognition using KTH Dataset Type of sequence Total seq Correctly Recognized In % walking 10 10 100 running 1010 100 hand waving 10 10 100 handclapping 10 10 100 Boxing 10 10 100 jogging 10 10 100 Σ = 60 Σ = 60 Avg =100 Average % of accuracy using KTH dataset is 100%. Table 2.Recognition using Weizmann Dataset Type of sequence Total seq Correctly Recognized In % walk 9 9 100 run 9 9 100 jack 9 9 100 skip 9 9 100 side 9 9 100 bend 9 9 100 jump 9 9 100 pjump 9 9 100 wave 1 9 9 100 wave 2 9 9 100 Σ = 90 Σ = 90 Avg =100 Average % of accuracy using Weizmann dataset is 100%. 8. CONCLUSION This paper has presented a motion-based approach for action recognition. It has used 2D blob as low-level feature and extracts mid-level feature „motion‟ from the blob using the method Lucas Kanade of optical flow. The motion features so obtained are classified using kNN classifier. The advantage of using kNN is that it does not require any learning process and also it is invariant against view-point, temporal and spatial variations; hence its accuracy is good. The average % of accuracy using the proposed method is 100% on Weizmann and KTH datasets. REFERENCES [1] S. Hari Kumar, P.Sivaprakash, “New Approach for Action Recognition Using Motion based Features”, Proceedings of 2013 IEEE Conference on Information and Communication Technologies (ICT 2013), pp.1247-1252. [2] Hetal Shah, N. C. Chauhan, “Recognition of Human Actions in Video”, International Journal on Recent and Innovation Trends in Computing and Communication (IJRITCC) May 2013, ISSN 2321 -8169Volume 1,Issue 5, pp.489 – 493. [3] Xiaodong Yang and YingLi Tian, “Eigen Joints-based Action Recognition Using Naïve-Bayes-Nearest-Neighbor”, 2012 IEEE, pp.14-19. [4] Mi Zhang Alexander A. Sawchuk, “Motion Primitive- Based Human Activity Recognition Using a Bag-of- Features Approach”, IHI‟12, January 28–30, 2012, Miami, Florida, USA. [5] Muhammad Hameed Siddiqi, Muhammad Fahim, Sungyoung Lee, Young-Koo Lee, “ Human Activity Recognition Based on Morphological Dilation followed by Watershed Transformation Method ”, 2010 International Conference on Electronics and Information Engineering (ICEIE 2010),Volume 2, 2010 IEEE,V2 433-V2 437. [6] Ronald Poppe, “A survey on vision-based human action recognition”, Science Direct Image and Vision Computing 28 (2010) 976–990. [7] Mohiuddin Ahmad, Seong-Whan Lee, “Human action recognition using shape and CLG-(Combined local-global) motion flow from multi-view image sequences”, Science Direct Pattern Recognition 41 (2008), 2237 – 2252. [8] Mohiuddin Ahmad and Seong-Whan Lee, “HMM-based Human Action Recognition Using Multiview Image Sequences”, Proceedings of the 18th International Conference on Pattern Recognition (ICPR'06), 2006 IEEE. [9] Moshe Blank, Lena Gorelick, Eli Shechtman, Michal Irani, Ronen Basri, “ Actions as space–time shapes”, Proceedings of the International Conference On Computer Vision (ICCV‟05), vol. 2, Beijing, China, October 2005, pp. 1395– 1402. [10] O. Masoud and N. Papanikolopoulos, “A method for human action recognition,” IVC, Vol. 21, 2003, pp.729-743. [11] J. K. Aggarwal and Q. Cai, “Human Motion Analysis: A Review”, idealibrary: Computer Vision and Image Understanding,Vol. 73, No. 3, March 1999, pp. 428–440. [12] http://www.nada.kth.se/cvap/actions