Ask Your Question

marwa allam's profile - activity

2016-12-23 04:54:02 -0600 received badge  Famous Question (source)
2014-11-29 12:16:46 -0600 received badge  Notable Question (source)
2014-05-22 02:44:15 -0600 received badge  Popular Question (source)
2013-03-11 02:46:38 -0600 commented answer Using Matlab data files (.mat) in C++

thanks .. but don't you have a good tutorial to use this library

2013-03-11 02:42:58 -0600 commented answer from matlab to c++

thanks for reply . and for your advice we will make sure to use it in our project

2013-03-11 02:29:39 -0600 received badge  Supporter (source)
2013-03-11 02:29:21 -0600 received badge  Critic (source)
2013-03-11 02:28:11 -0600 asked a question sift extract keypoints

i want to know how sift extract keypoints from image? or how these lines work?

% Call keypoints executable
if isunix
   command = '!./sift ';
else
   command = '!siftWin32 ';%this on
end
command = [command ' <tmp.pgm >tmp.key'];
eval(command);%fill data of tmp.pgm in tmp.key
2013-02-15 13:07:37 -0600 received badge  Student (source)
2013-02-15 05:36:36 -0600 asked a question arbitrary data structures

what is mean by arbitrary data structures ? and what is their types?

2013-02-02 15:23:18 -0600 asked a question from matlab to c++

excuse me, i have some code i was working on in matlab language and i want to convert it to c++ to easily use opencv 2.4.3. can any one advice me the best way to do that or if there any special technique to follow

2013-02-02 15:20:12 -0600 asked a question Using Matlab data files (.mat) in C++

I want to use the data in .mat file inside c++ code. I am using visual studio 2010 and Matlab r2011b. is there any library or function or anything in c++ language enable me to read mat file?