Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
What does it mean "merge column vector for each training face"?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Ali  
View profile  
 More options Oct 14, 7:44 am
From: Ali <yourx...@gmail.com>
Date: Wed, 14 Oct 2009 04:44:28 -0700 (PDT)
Local: Wed, Oct 14 2009 7:44 am
Subject: What does it mean "merge column vector for each training face"?
Hi
I need little help, about how to merge column of an image in MATLAB.
Is there any direct function to I have to make it manually.

thanks
M.Ali Subhani


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Oh Beom Seok  
View profile  
 More options Oct 14, 7:50 am
From: Oh Beom Seok <hosk...@gmail.com>
Date: Wed, 14 Oct 2009 20:50:43 +0900
Local: Wed, Oct 14 2009 7:50 am
Subject: Re: What does it mean "merge column vector for each training face"?

Hi, Ali

What does mean "merge column of an image"?
Give the question in detail.

Regards,
Beom Seok Oh.

2009/10/14 Ali <yourx...@gmail.com>


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ali  
View profile  
 More options Oct 14, 7:55 am
From: Ali <yourx...@gmail.com>
Date: Wed, 14 Oct 2009 04:55:27 -0700 (PDT)
Local: Wed, Oct 14 2009 7:55 am
Subject: Re: What does it mean "merge column vector for each training face"?
Hi,
I am working on Feature Extraction

% merge column vector for each training face ...... ( I dont
understand this comment)

X = [x1 x2 ... xM]     where M training images. sized N pixels wide by
N pixels tall

thanks..


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
anouar  
View profile  
 More options Oct 14, 8:09 am
From: anouar <me.ano...@gmail.com>
Date: Wed, 14 Oct 2009 14:09:12 +0200
Local: Wed, Oct 14 2009 8:09 am
Subject: Re: What does it mean "merge column vector for each training face"?
giving an image with N pixels; N=c*l ("c" means columns, and "l" lines)

to merge column of an image

A=imread("yourimage");
A=double(A(:));

so your image will be transformed from an uint8 matrix (c x l) to a
column of doubles with N component

to create your Data matrix for T training images you have to create The
D matrix

d=zeros(N,T); % just to  boost
for i=1:T
     V=double(imread("your-i-image"));
     D(:,i)=V(:);
end

that's all

Le 14/10/2009 13:44, Ali a écrit :


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Oh Beom Seok  
View profile  
 More options Oct 14, 8:15 am
From: Oh Beom Seok <hosk...@gmail.com>
Date: Wed, 14 Oct 2009 21:15:18 +0900
Local: Wed, Oct 14 2009 8:15 am
Subject: Re: What does it mean "merge column vector for each training face"?

Hi,

I think, the X is a matrix representing a set of converted face
image vectors.

x1 represent a first face image vector converted from face image.
And the "merge" means concatenating the image vectors in horizontally to
generate a matrix.

In the example you gave, the number of training image is M sized N pixels.
So the size of matrix X should be NxM matrix.

Regards,
Beom Seok.

2009/10/14 Ali <yourx...@gmail.com>


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
TrulyOurs  
View profile  
 More options Oct 16, 9:13 am
From: TrulyOurs <yourx...@gmail.com>
Date: Fri, 16 Oct 2009 14:13:27 +0100
Local: Fri, Oct 16 2009 9:13 am
Subject: Re: What does it mean "merge column vector for each training face"?

hi,
thank you for helping.

I also got this..

if i have two matrices of size 5 rows and 5 columns (5 x 5)

let say    A --> 5 x 5   and B ---->   5 x 5

then X has 1st column containing all columns of A and 2nd Column of X
contains all columns of B

X = a11  b11
      a12  b12
      a13  b13
      a14  b14
      a15  b15
      a21  b21
      a22  b22
      a23  b23
      a24  b24
      a25  b25
       ...    ...
      a55  b55

I hope it helps others also...

In MATLAB it will be written as X(1,1) = reshap(A)   and X(1,2) =  reshap(B)

Reagards and thanks

--
------------------------------------------------------
Engineer Muhammad Ali Subhani
----
Mob: +44-(0)-7787878823
-----------------------------------------------------


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google