Thread Subject: human tracking

Subject: human tracking

From: Chee Sing Wai

Date: 1 Apr, 2008 16:26:05

Message: 1 of 29

Hi, I'm developing an algorithm for pedestrian tracking for
my final year project using Matlab ver. R2006a.
Most of the object detection and tracking part were almost
completed base on background modeling technique and
background subtraction frame by frame.
The part that I'm facing problems now is to do the human
recognition to identify the object tracked is human or not.
As I'm new to this subject, can anyone please help in
recommend which technique should be used and how?

Subject: human tracking

From: ImageAnalyst

Date: 2 Apr, 2008 01:53:37

Message: 2 of 29

On Apr 1, 12:26=A0pm, "Chee Sing Wai" <williams_lib2...@hotmail.com>
wrote:
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?

---------------------------------------------------------------------------
Could be very difficult. Could be a Ph.D. project instead of just a
simple final year project. So you have objects moving in your video
and you need to detect whether they are human versus car, truck, dog,
bird, etc. You better be able to make a lot of assumptions or it's
going to be very difficult. For example, let's say you have a small
blob moving across the top of your frame. How do you know it's a bird
(or a plane) and not a human that is far away? You can't look for
skin color because the person could be walking away and not showing
any skin. Maybe you can assume that anything moving in a certain zone
is human (say along a sidewalk) and anything moving in another zone
(say, the street) is a vehicle. You might say that vehicles move
faster than humans but of course we know that this is not always the
case. Maybe you could do some sort of shape recognition but this is
going to be very hard. Maybe you could pick out people based on the
size of the blob, but this assumes everything is about the same
distance from the camera. For a simple example, if you were looking
at a crosswalk with a limited field of view that you had to monitor,
then you could assume that if its size is in a certain range, and its
speed is in a certain range, then it might be human. Maybe you could
post a few frames (on a web site somewhere), list your known
parameters, restrictions, and assumptions, and then ask the smart
folks over in sci.image.processing for tips.
Regards,
ImageAnalyst

Subject: human tracking

From: Chee Sing Wai

Date: 2 Apr, 2008 18:29:03

Message: 3 of 29


> Could be very difficult. Could be a Ph.D. project instead
of just a
> simple final year project. So you have objects moving in
your video
> and you need to detect whether they are human versus car,
truck, dog,
> bird, etc. You better be able to make a lot of
assumptions or it's
> going to be very difficult. For example, let's say you
have a small
> blob moving across the top of your frame. How do you know
it's a bird
> (or a plane) and not a human that is far away? You can't
look for
> skin color because the person could be walking away and
not showing
> any skin. Maybe you can assume that anything moving in a
certain zone
> is human (say along a sidewalk) and anything moving in
another zone
> (say, the street) is a vehicle. You might say that
vehicles move
> faster than humans but of course we know that this is not
always the
> case. Maybe you could do some sort of shape recognition
but this is
> going to be very hard. Maybe you could pick out people
based on the
> size of the blob, but this assumes everything is about the
same
> distance from the camera. For a simple example, if you
were looking
> at a crosswalk with a limited field of view that you had
to monitor,
> then you could assume that if its size is in a certain
range, and its
> speed is in a certain range, then it might be human.
Maybe you could
> post a few frames (on a web site somewhere), list your known
> parameters, restrictions, and assumptions, and then ask
the smart
> folks over in sci.image.processing for tips.
> Regards,
> ImageAnalyst

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

Thanks ImageAnalyst for the reply.

Then lets say that my scope is only limited to systems such
as indoor surveillance system (e.g. a surveillance camera
watching a room or corridor..) and I am only tracking a
single moving object. Then how well will the outcome be if I
determine whether the moving object is human or not base on
the size of the blob?

Haha.. actually I have been trying to do this using some
sort of shape or pattern recognition but just like you have
mentioned, it is quite difficult to do it due to lacked of
knowledge and examples in this field. It would be great if
anyone can provides some useful links or examples regarding
the related field. Thanks

Subject: human tracking

From: ImageAnalyst

Date: 2 Apr, 2008 19:19:05

Message: 4 of 29

On Apr 2, 2:29=A0pm, "Chee Sing Wai" <williams_lib2...@hotmail.com>
wrote:
> > Could be very difficult. =A0Could be a Ph.D. project instead
> of just a
> > simple final year project. =A0So you have objects moving in
> your video
> > and you need to detect whether they are human versus car,
> truck, dog,
> > bird, etc. =A0You better be able to make a lot of
> assumptions or it's
> > going to be very difficult. =A0For example, let's say you
> have a small
> > blob moving across the top of your frame. =A0How do you know
> it's a bird
> > (or a plane) and not a human that is far away? =A0You can't
> look for
> > skin color because the person could be walking away and
> not showing
> > any skin. =A0Maybe you can assume that anything moving in a
> certain zone
> > is human (say along a sidewalk) and anything moving in
> another zone
> > (say, the street) is a vehicle. =A0You might say that
> vehicles move
> > faster than humans but of course we know that this is not
> always the
> > case. =A0Maybe you could do some sort of shape recognition
> but this is
> > going to be very hard. =A0Maybe you could pick out people
> based on the
> > size of the blob, but this assumes everything is about the
> same
> > distance from the camera. =A0For a simple example, if you
> were looking
> > at a crosswalk with a limited field of view that you had
> to monitor,
> > then you could assume that if its size is in a certain
> range, and its
> > speed is in a certain range, then it might be human.
> Maybe you could
> > post a few frames (on a web site somewhere), list your known
> > parameters, restrictions, and assumptions, and then ask
> the smart
> > folks over in sci.image.processing for tips.
> > Regards,
> > ImageAnalyst
>
> @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
>
> Thanks ImageAnalyst for the reply.
>
> Then lets say that my scope is only limited to systems such
> as indoor surveillance system (e.g. a surveillance camera
> watching a room or corridor..) and I am only tracking a
> single moving object. Then how well will the outcome be if I
> determine whether the moving object is human or not base on
> the size of the blob?
>
> Haha.. actually I have been trying to do this using some
> sort of shape or pattern recognition but just like you have
> mentioned, it is quite difficult to do it due to lacked of
> knowledge and examples in this field. It would be great if
> anyone can provides some useful links or examples regarding
> the related field. Thanks- Hide quoted text -
>
> - Show quoted text -
----------------------------------------------------------------------------=
--------------------------------
Chee Sing Wai:
What other single object do you expect to see moving through the
room? A dog? A robot? A paper airplane? I would think in a very
simplified and controlled final year project where you can control
what goes through the room, then doing it based on size should do very
well.

Here's a useful link for you:
http://www.google.com/search?hl=3Den&q=3Dhuman+tracking+surveillance
Looks like there's lots of good stuff there.
Good luck,
ImageAnalyst

Subject: human tracking

From: Chee Sing Wai

Date: 4 Apr, 2008 16:50:20

Message: 5 of 29

ImageAnalyst

I see. I think I have some idea already on what should I
proceed on.

Thank you very much for your post. It's been pleasure
talking to you.

Subject: human tracking

From: markmark2008

Date: 13 Apr, 2008 15:07:26

Message: 6 of 29

dear sir

my final year project is similar to your but mine is an object detection and
tracking using matlab
can you please tell me how can i detect object in a video ( this is my
problem) and can you send to me your source code

with best wishes

Chee Sing Wai wrote:
>Hi, I'm developing an algorithm for pedestrian tracking for
>my final year project using Matlab ver. R2006a.
>Most of the object detection and tracking part were almost
>completed base on background modeling technique and
>background subtraction frame by frame.
>The part that I'm facing problems now is to do the human
>recognition to identify the object tracked is human or not.
>As I'm new to this subject, can anyone please help in
>recommend which technique should be used and how?

Subject: human tracking

From: Chee Sing Wai

Date: 14 Apr, 2008 18:16:02

Message: 7 of 29

hi markmark2008,

perhaps you could tell me(or others in this matlab central
community) about your project's scopes. such as are you
tracking outdoor or indoor objects? stationary background or
dynamic background?

my project involved stationary background and the most
common way to do this is save all your video frames, then
make a background model(usually for the first 10-30 frames),
then subtract every frames with the background model to
detect foreground objects, then the proses morfology to get
rid of the noise(white spot)..

please give me your email address so that i could send you
my source code for reference.

Best Regards,
Sing Wai

"markmark2008" <u42886@uwe> wrote in message
<829f248aba5c4@uwe>...
> dear sir
>
> my final year project is similar to your but mine is an
object detection and
> tracking using matlab
> can you please tell me how can i detect object in a video
( this is my
> problem) and can you send to me your source code
>
> with best wishes

Subject: human tracking

From: chris adam

Date: 18 Jul, 2008 08:35:03

Message: 8 of 29

"markmark2008" <u42886@uwe> wrote in message
<829f248aba5c4@uwe>...
> Now im doing a project that able to recognize an object
by background subtraction method e.g people walking.I've a
problem on how to develop Matlab algorithm.Can you send me
the source code for my reference too.
> best regards

Subject: human tracking

From: chris adam

Date: 18 Jul, 2008 08:36:01

Message: 9 of 29

"markmark2008" <u42886@uwe> wrote in message
<829f248aba5c4@uwe>...
> Now im doing a project that able to recognize an object
by background subtraction method e.g people walking.I've a
problem on how to develop Matlab algorithm.Can you send me
the source code for my reference too.
> best regards

Subject: human tracking

From: Chee Sing Wai

Date: 19 Jul, 2008 18:23:02

Message: 10 of 29

Hi Chris,

No problem, just let me know your email add. and I will send
it to you. But wanna inform you beforehand that my project
is actually a final year project titled "pedestrian tracking
using Kalman Filter".

And there's a very good examples on the Matlab Central File
Exchange area called "2D tracking using Kalman Filter" which
I think might be useful to you.

Subject: human tracking

From: chris adam

Date: 20 Jul, 2008 16:18:02

Message: 11 of 29

Hi Chee,

Thank you for your concern.By the way, this is my email
adress.< crees82@yahoo.com >.Hope this will help me a lot.

Regards,
Chris

Subject: human tracking

From: chris adam

Date: 20 Jul, 2008 16:18:02

Message: 12 of 29

Hi Chee,

Thank you for your concern.By the way, this is my email
adress.< crees82@yahoo.com >.Hope this will help me a lot.

Regards,
Chris

Subject: human tracking

From: wasim

Date: 15 Jan, 2009 14:59:01

Message: 13 of 29


> Hi Chee,
>
> i am doing a project on human tracking and activity recognition
can u plzzzzzz help me with coding part
if u want i can mail u my design part

Subject: human tracking

From: Chee Sing Wai

Date: 23 Feb, 2009 15:44:03

Message: 14 of 29

"wasim " <wazz.1987@gmail.com> wrote in message <gknivl$in5$1@fred.mathworks.com>...
>
> > Hi Chee,
> >
> > i am doing a project on human tracking and activity recognition
> can u plzzzzzz help me with coding part
> if u want i can mail u my design part

Hi Wasim, sorry it's been a while since i last log in here, if you're still interested. Can find me at williams_lib2509@hotmail.com...

Subject: human tracking

From: wazz

Date: 4 Mar, 2009 06:41:10

Message: 15 of 29

On Feb 23, 8:44=A0pm, "Chee Sing Wai" <williams_lib2...@hotmail.com>
wrote:
> "wasim " <wazz.1...@gmail.com> wrote in message <gknivl$in...@fred.mathwo=
rks.com>...
>
> > > Hi Chee,
>
> > > i am doing a project on human tracking and activity recognition
> > can u plzzzzzz help me with coding part
> > if u want i can mail u my design part
>
> Hi Wasim, sorry it's been a while since i last log in here, if you're sti=
ll interested. Can find me at williams_lib2...@hotmail.com...



ya sure will find u at williams_lib2...@hotmail.com

thanks a lot for providing your id
hope to hear from you soon

Subject: human tracking

From: Sa&#353;a Mandi?

Date: 10 Nov, 2010 13:57:03

Message: 16 of 29

Hi!
I'm working on my final year project and the theme is moving detection in video!
I saw that you have something similar to mine so I was wondering if you finished your work?
I need help with mine!
I'm not so good with matlab so I need a help or can you give me your algorithm so I can see how did you resolve your problem with detection??
Thank you!

Can You contact me on email?

Subject: human tracking

From: laks laks

Date: 19 Jan, 2011 09:06:04

Message: 17 of 29

Hi
i m doing mt final year project on tracking. I was wondering if u could mail me your matlab code for tracking. My id is lakshmir10@gmail.com. thanks in advance

Subject: program code for lane departure warning system

From: biplab

Date: 7 Feb, 2011 16:37:03

Message: 18 of 29

hi ,
i am doing a project on "human intrusion detection" in matlab.its mainly regarding human beings following a strict path while walking, any deviation from the intended path will be recognised and alarm sounded. the project is somewhat similar to that of "lane departure warning system" only the difference being it is implemented for human being. Being new to matlab finding it very difficult to develop the code. Any help in this regard will be highly appreciated. if anyone can mail me any program code somewhat relevant to this also will do . thanks folks my email id is biplabkumarnath@hotmail.com

Subject: human tracking

From: Hisham Sager

Date: 10 Feb, 2011 06:08:03

Message: 19 of 29

Hey Chee Sing Wai,

Have you done with the project?

Thanks
Hisham,

Subject: human tracking

From: CHE

Date: 10 Apr, 2011 16:28:02

Message: 20 of 29

"Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?
 
Hi, Chee Sing Wai, I'm noli and i really needs your help right now for my final year project. I'm doing the same project like your's but it still difference. my project themes is to create the system for people tracking by using graphical user interface(GUI) using MATLAB7.1.
I'm almost done with background subtraction and morphology process but the part that I can't do is to track the people(video). If you still kept your project code, can you email it for me.

thank you.
noli

Subject: human tracking

From: heena desia

Date: 18 Apr, 2011 19:43:05

Message: 21 of 29

"Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?

Hi did you manage to complete this? recognise whether it was human? car? bird etc? I am currently trying to do this and I am running out of time and would appreciate the help.
If you wouldnt mind could you send me the code (to reference) to time4sleep@hotmail.com? Thank you for any help you may give :)

Subject: human tracking

From: Christopher Marlo Capinianes

Date: 13 Jun, 2011 14:03:02

Message: 22 of 29

"Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?

Hello Chee Sing Wai

Hi, I was wondering if you still have this project at hand? similar to yours I am also trying to make a people tracking system. Do you still have your matlab code for this? would appreciate the help if you could send it to my e-mail cmuc_1988@yahoo.com. Thank you and God Bless.

Regards,
Marlo

Subject: human tracking

From: Christopher Marlo Capinianes

Date: 13 Jun, 2011 14:04:05

Message: 23 of 29

"Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?

Hello Chee Sing Wai

Hi, I was wondering if you still have this project at hand? similar to yours I am also trying to make a people tracking system. Do you still have your matlab code for this? would appreciate the help if you could send it to my e-mail cmuc_1988@yahoo.com. Thank you and God Bless.

Regards,
Marlo

Subject: human tracking

From: sapna sapna

Date: 26 Sep, 2011 16:09:28

Message: 24 of 29

"Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> Hi, I'm developing an algorithm for pedestrian tracking for
> my final year project using Matlab ver. R2006a.
> Most of the object detection and tracking part were almost
> completed base on background modeling technique and
> background subtraction frame by frame.
> The part that I'm facing problems now is to do the human
> recognition to identify the object tracked is human or not.
> As I'm new to this subject, can anyone please help in
> recommend which technique should be used and how?
hi chee
i am also working on human tracking and having problems while tracking object in video.can you please email me the code to track moving objects in video???

Subject: human tracking

From: Davide

Date: 28 Sep, 2011 12:01:27

Message: 25 of 29

"Christopher Marlo Capinianes" wrote in message <it55cl$5om$1@newscl01ah.mathworks.com>...
> "Chee Sing Wai" wrote in message <fstnms$965$1@fred.mathworks.com>...
> > Hi, I'm developing an algorithm for pedestrian tracking for
> > my final year project using Matlab ver. R2006a.
> > Most of the object detection and tracking part were almost
> > completed base on background modeling technique and
> > background subtraction frame by frame.
> > The part that I'm facing problems now is to do the human
> > recognition to identify the object tracked is human or not.
> > As I'm new to this subject, can anyone please help in
> > recommend which technique should be used and how?
>
> Hello Chee Sing Wai
>
> Hi, I was wondering if you still have this project at hand? similar to yours I am also trying to make a people tracking system. Do you still have your matlab code for this? would appreciate the help if you could send it to my e-mail cmuc_1988@yahoo.com. Thank you and God Bless.
>
> Regards,
> Marlo

Hi,
I'm working to the same subject. Could you send me some code to human tracking?
Actually in my project I chose to utilize the SIFT, but the points that I find is not sufficient to track object with some kind of occlusion. So if you have some other solution, write here or by email.
Thanks

mdavide86@gmail.com
Davide

Subject: human tracking

From: sapna sapna

Date: 14 Oct, 2011 11:50:27

Message: 26 of 29

"Chee Sing Wai" wrote in message <g5tbe5$cm4$1@fred.mathworks.com>...
> Hi Chris,
>
> No problem, just let me know your email add. and I will send
> it to you. But wanna inform you beforehand that my project
> is actually a final year project titled "pedestrian tracking
> using Kalman Filter".
>
> And there's a very good examples on the Matlab Central File
> Exchange area called "2D tracking using Kalman Filter" which
> I think might be useful to you.

hi chee
i am working on my project where i have to detect abnormal events for this purpose i have to track human in video. i am also using kalman filter for tracking.can u send me the source code of your project...
plz do reply in either case

Regards
sapna

Subject: human tracking

From: sapna sapna

Date: 24 Oct, 2011 14:14:30

Message: 27 of 29

"Chee Sing Wai" wrote in message <gnug83$m6l$1@fred.mathworks.com>...
> "wasim " <wazz.1987@gmail.com> wrote in message <gknivl$in5$1@fred.mathworks.com>...
> >
> > > Hi Chee,
> > >
> > > i am doing a project on human tracking and activity recognition
> > can u plzzzzzz help me with coding part
> > if u want i can mail u my design part
>
> Hi Wasim, sorry it's been a while since i last log in here, if you're still interested. Can find me at williams_lib2509@hotmail.com...

hi chee
i am working on human tracking...i have detected the human and extract features like centroid and bounding box etc. next step is to track the human. i stuck at this point, if u still have the code thn do reply me
sapna_sapna593@yahoo.com

waiting for ur response

Subject: human tracking

From: Borja de Riva

Date: 2 Jan, 2012 17:06:08

Message: 28 of 29

"Chee Sing Wai" wrote in message <g5tbe5$cm4$1@fred.mathworks.com>...
> Hi Chris,
>
> No problem, just let me know your email add. and I will send
> it to you. But wanna inform you beforehand that my project
> is actually a final year project titled "pedestrian tracking
> using Kalman Filter".
>
> And there's a very good examples on the Matlab Central File
> Exchange area called "2D tracking using Kalman Filter" which
> I think might be useful to you.

Hello:

I am working in a project for tracking pedestrians outiside. I am trying to use background removal but the problem is that the leaves and grass that are in the zone move from one image to other, so using substraction doesn't work.

May you please send me the source code you use for your project?

Thank you very much in advance.

My email is glorfindel33@hotmail.com

Subject: human tracking

From: SathyaNarayanan

Date: 5 Jan, 2012 05:08:08

Message: 29 of 29

Sir My final year project is Human detection and tracking in visual sensor network.
Can you help me idea to confirm whether the object in the image is a human.

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
human Caelyn Low 12 Sep, 2011 23:23:47
human tracking CHE 10 Apr, 2011 12:29:15
tracking and re... Hisham Sager 10 Feb, 2011 01:09:22
code Thiru 22 Feb, 2010 01:53:40
tracking venkata 6 Mar, 2009 07:31:33
tracking Chee Sing Wai 1 Apr, 2008 12:30:13
recognition Chee Sing Wai 1 Apr, 2008 12:30:13
human Chee Sing Wai 1 Apr, 2008 12:30:13
rssFeed for this Thread

Contact us at files@mathworks.com