Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shadow2silüet #5

Open
seyyah opened this issue Sep 24, 2010 · 4 comments
Open

shadow2silüet #5

seyyah opened this issue Sep 24, 2010 · 4 comments
Labels

Comments

@seyyah
Copy link
Contributor

seyyah commented Sep 24, 2010

Ne

insana ait gölge resminden silüetin üretilmesi.

:keywords: affine transform

Neden

gait analiz için tonlarca yöntem mevcut, gölgeden kişi tanımada gölge2silüet in ardından silüetten gait analiz yapmak istiyoruz.

Nasıl

ters affine dönüşümü yapacağız. mihenk noktaları nasıl belirlenecek?

Çıktı

girdi olarak gölge resmi geldiğinde çıktı olarak silüet resmi üretilmelidir.

 function siluet = shadow2siluet(shadow)

Kullanım

> img = imread('golgeliinsan.jpg');
> golge = img2shadow(img);
> siluet = shadow2siluet(golge);
> imshow(siluet)
@seyyah
Copy link
Contributor Author

seyyah commented Oct 13, 2010

affine transform örnekleri için şu bağlantı daki similarity, projective, vs bak

@seyyah
Copy link
Contributor Author

seyyah commented Oct 13, 2010

ayrıca matlab da imtransform ve maketform u incele,

This is the code i executed for using imtransform to translate an image to a new origin:-

xform=[1 0 0; 0 1 0; 521 215 1];

I=zeros(193,445);
tform_translate = maketform('affine',xform);
[cb_trans xdata ydata]= imtransform(I, tform_translate);
cb_trans2 = imtransform(I, tform_translate,'XData',[1 xdata(1,2)],'YData', [1 ydata(1,2)],'FillValues', 1 );

imtool(cb_trans2);

@seyyah
Copy link
Contributor Author

seyyah commented Oct 13, 2010

affine ile ilgili 2006 da hazırlanmış matlab - fig dosyasını indir ve dene

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant