You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
(26) |
Nov
(14) |
Dec
(79) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(6) |
Feb
(7) |
Mar
(55) |
Apr
(13) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(2) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
(7) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: lakesh <lak...@gm...> - 2008-12-20 15:34:34
|
Also about sigma most of the papers they have taken 2pi like us. But this is totally arbitrary as said by one of the people in the groups On Sat, Dec 20, 2008 at 9:15 PM, lakesh <lak...@gm...> wrote: > Hi Abhishek, > > I was tuning the parameters of the Gabor filters and I think I got some > improvements. I changed the window size and the threshold and some other > parameters. There is slight improvement; however we can tune the parameters > to any thing we want that is we can overfit it to a specific image. Also > other thing is that we don't need to get the high energy points to the > specific locations like eyes,nose mouth etc. I got some papers where they > have used adaboost for feature selection and the features are located at > random locations like us. Also in most of the papers they have taken > frequency as sqrt(2). The ebgm paper has also taken the same frequency. Also > I think while comparing the responses of the images to get the feature point > we should use directly the magnitude. I mean when we shift through the image > using the window of size WxW to compare the results, we should use the > magnitude of the response for the comparison and not directly the complex > numbers. I tried to compare the complex number and it considers only the > real part while doing the comparison. So I think it is not the correct way > to compare. Though in Kepenekci it seems like they have directly compared > the complex numbers, I think we should use the magnitude values directly. > > Lets sit and discuss the parameter selection when you finish the C++ > implementation. > Currently I am laying my hands with everything I can find and checking the > results. > > > > On Sat, Dec 20, 2008 at 8:46 PM, Abhishek Dutta <the...@gm...>wrote: > >> Hi lakesh, >> I decided to use "vigra<http://kogs-www.informatik.uni-hamburg.de/%7Ekoethe/vigra/>" >> library instead of GSL. GSL was not sufficient and did not fulfill all our >> requirements. >> >> "vigra" allows to generate gabor filter family by just supplying the no. >> of orientations, scale and center frequency. According to the "vigra" >> documentation, center frequency should not exceed 0.375. However, I was >> using sqrt(2) = 1.414 as frequency in matlab implementation. Moreover, it >> selects the best gaussian function (the sigma that we needed to supply) >> based on a mathematical formula (that I didn't understand). The output (at >> image size 128x128) looks good. But this does not assure better final >> results. I will update you with final results after I complete the code to >> compute feature vectors. >> >> bye >> >> -- >> Abhishek >> http://adutta.np.googlepages.com >> > > > > -- > Have a nice day > -- Have a nice day |
From: lakesh <lak...@gm...> - 2008-12-20 15:30:26
|
Hi Abhishek, I was tuning the parameters of the Gabor filters and I think I got some improvements. I changed the window size and the threshold and some other parameters. There is slight improvement; however we can tune the parameters to any thing we want that is we can overfit it to a specific image. Also other thing is that we don't need to get the high energy points to the specific locations like eyes,nose mouth etc. I got some papers where they have used adaboost for feature selection and the features are located at random locations like us. Also in most of the papers they have taken frequency as sqrt(2). The ebgm paper has also taken the same frequency. Also I think while comparing the responses of the images to get the feature point we should use directly the magnitude. I mean when we shift through the image using the window of size WxW to compare the results, we should use the magnitude of the response for the comparison and not directly the complex numbers. I tried to compare the complex number and it considers only the real part while doing the comparison. So I think it is not the correct way to compare. Though in Kepenekci it seems like they have directly compared the complex numbers, I think we should use the magnitude values directly. Lets sit and discuss the parameter selection when you finish the C++ implementation. Currently I am laying my hands with everything I can find and checking the results. On Sat, Dec 20, 2008 at 8:46 PM, Abhishek Dutta <the...@gm...>wrote: > Hi lakesh, > I decided to use "vigra<http://kogs-www.informatik.uni-hamburg.de/%7Ekoethe/vigra/>" > library instead of GSL. GSL was not sufficient and did not fulfill all our > requirements. > > "vigra" allows to generate gabor filter family by just supplying the no. of > orientations, scale and center frequency. According to the "vigra" > documentation, center frequency should not exceed 0.375. However, I was > using sqrt(2) = 1.414 as frequency in matlab implementation. Moreover, it > selects the best gaussian function (the sigma that we needed to supply) > based on a mathematical formula (that I didn't understand). The output (at > image size 128x128) looks good. But this does not assure better final > results. I will update you with final results after I complete the code to > compute feature vectors. > > bye > > -- > Abhishek > http://adutta.np.googlepages.com > -- Have a nice day |
From: Abhishek D. <the...@gm...> - 2008-12-20 14:55:09
|
Hi all, After lots of searching and testing I finally made choice to use the "vigra<http://kogs-www.informatik.uni-hamburg.de/%7Ekoethe/vigra/>" library (http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/). Despite its weird name, it has everything that a computer vision application would every want. The most interesting part is that everything is Generic which means that eveything is easy to glue together. There are very less tutorials and the only source of information is example programs, codes in the unit test and the doxygen documentation. It was a bit difficult to get started but everything is a breeze once you get used to it. After considering the OpenCV, Octave and GSL (GNU Scientific Library) I decided to use this. GSL is a good choice, but after using it I found that it is designed with focus on mathematical stuffs rather than things that will be mostly used by computer vision applications. Anjan and Bibek must be gearing up to start the C++ implementation of Adaboost. I am sure you will also be searching for a library that helps perform computer vision related tasks. As we have already implemented the algorithm in Matlab, we don't need to bother to write boilerplate codes to do some basic things. So using a library is a good choice. You can give "vigra" a try. I you need any help I can write a short HOWTO in our WIKI. bye -- Abhishek http://adutta.np.googlepages.com |
From: lakesh <lak...@gm...> - 2008-12-20 02:35:44
|
Hi all, This is a new book in Face Recognition recently published. http://intechweb.org/book.php?id=101 -- Have a nice day |
From: Anjan <roc...@gm...> - 2008-12-19 18:07:18
|
yes this will be useful :) On Fri, Dec 19, 2008 at 9:20 PM, Bibek Shrestha <bib...@gm...>wrote: > There is a properties reader in src/fe/nn/cpp > filereader.h and filereader.cpp > > > With it you can save settings in any configuration format as > > > keyname = valuename > > > line without the character '=' are ignored > line starting with # are automatically taken as comment whether it has '=' > or not > > > Usage > #include 'filereader.h' > #include <iostream> > #include <boost/lexical_cast.hpp> > int main() > { > fileReader.loadFile("/temp/rtftr.cfg"); > fileReader.getProperty("nn_test_network_filename"); > #returns the value of key named "nn_test_network_filename" > > > std::cout << fileReader.getProperty("abcd"); > > > # changing into float > std::cout << 2 + > lexical_cast<float>(fileReader.getProperty("someintegervalue")); > } > ------------------------------------ > > > Note that the values are obtained as std::string so if integers are passed > through configuration file, they should be converted from string to integer > > > Changing is easy from boost's lexical cast > > > Also note to use proper format names for keys, for example see the attached > configuration file. A proper place to put all configuration is > /temp/rtftr.cfg > > > Cheers > -- > Bibek Shrestha > bib...@gm... > 9841 825 925 > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Rtftr-devel mailing list > Rtf...@li... > https://lists.sourceforge.net/lists/listinfo/rtftr-devel > > -- Anjan Nepal GPO Box 11458 Registered Linux User #395963 |
From: Bibek S. <bib...@gm...> - 2008-12-19 15:36:31
|
################################################ ## RTFTR configurations file # ################################################ ## Points to note ## 1. the key value pairs are stored in the format ## key = value ## ## 2. Both key and value are trimmed on left and right to remove spaces ## 3. A key value pair will only be stored if there is '=' character ## all lines are ignored which donot contain '=' character ## 4. A line with '=' with # as starting character is regarded as comment ## so the above line is not read ################################ # Training variables # ################################ # the paths need "/" at the end nn_train_dir_face=/temp/nn/faces1/ nn_train_dir_nonface=/temp/nn/nonfaces/ nn_mask_enable=1 nn_mask_image_filename=/temp/nn/mask.pgm nn_train_load_network_enable = 0 nn_train_load_network_filename=/temp/nn/networks/network-mask2.net nn_train_save_network_enable = 1 nn_train_save_network_filename=/temp/nn/networks/network-mask2.net nn_train_image_masked_display_enable=0 ################################ # Testing variables # ################################ nn_test_network_param_pixelstep = 1 nn_test_network_param_threshold = 0.85 nn_test_network_filename = /temp/nn/networks/network-mask2.net nn_test_network_filename2 = /temp/nn/networks/network-mask2.net # nn_test_image_filename = /temp/nn/test/amy-bw.jpg nn_test_image_filename = /home/bibek/Work/train-images/dsc04247.jpg # nn_test_image_filename = /temp/nn/test/nonfaces/NaturesScenery.jpg nn_test_image_show_rectangle = 1 nn_test_image_show_centerpoint = 1 nn_test_thresholding_pixel_distance = 3 nn_test_thresholding_min_pixels = 3 # save the detected images in this folder nn_test_image_detected_save_enable=1 nn_test_dir_image_detected_save=/temp/nn/detected/ |
From: lakesh <lak...@gm...> - 2008-12-19 03:08:51
|
Hi Abhishek, I found this link http://www.cs.uta.fi/~etm/research/. I think they have lots of useful links related to Gabor filters. Check this out -- Have a nice day |
From: lakesh <lak...@gm...> - 2008-12-18 12:39:19
|
Hi Abhishek, There is this library vxl http://vxl.sourceforge.net/. I think they have convolution options. Have a look at it -- Have a nice day |
From: Bibek S. <bib...@gm...> - 2008-12-18 03:55:41
|
I think you can install boost despite the problem. Have you tried make install? On Thursday 18 December 2008 00:19:32 Anjan wrote: > Hi Lakesh, > I'm having problem install boost library in kubuntu. I think you might have > ran across this problem before. This is the error i get, any help? > > ./configure > Unicode/ICU support for Boost.Regex?... not found. > > make > > ./tools/jam/src/bin.linuxx86/bjam --user-config=user-config.jam > error: at /main/src/boost_1_37_0/tools/build/v2/build/project.jam:846 > error: duplicate initialization of gcc with the following parameters: > error: version = 4.3.2 > error: previous initialization at > /main/src/boost_1_37_0/tools/build/v2/build/project.jam:846 > > Not all Boost libraries built properly. -- Bibek Shrestha bib...@gm... 9841 825 925 |
From: Anjan <roc...@gm...> - 2008-12-17 18:34:37
|
Hi Lakesh, I'm having problem install boost library in kubuntu. I think you might have ran across this problem before. This is the error i get, any help? ./configure Unicode/ICU support for Boost.Regex?... not found. make ./tools/jam/src/bin.linuxx86/bjam --user-config=user-config.jam error: at /main/src/boost_1_37_0/tools/build/v2/build/project.jam:846 error: duplicate initialization of gcc with the following parameters: error: version = 4.3.2 error: previous initialization at /main/src/boost_1_37_0/tools/build/v2/build/project.jam:846 Not all Boost libraries built properly. -- Anjan Nepal GPO Box 11458 Registered Linux User #395963 |
From: lakesh <lak...@gm...> - 2008-12-17 14:34:03
|
Hi Abhishek, Can you mail me the pdf file of the Gabor wavelets that you gave to RK sir, the one you showed in our previous meeting -- Have a nice day |
From: Abhishek D. <the...@gm...> - 2008-12-17 14:17:43
|
Hi lakesh, Thankx for creating the page. I successfully compiled octave program in kdevelop after watching the setting of your kdevelop installation. bye On Wed, Dec 17, 2008 at 7:57 PM, lakesh <lak...@gm...> wrote: > Hi Abhishek, > I have edited the wiki page and added some screenshots to configure > kdevelop for using octave library. Hope I am not late. Also here is a pdf > file which is not that much helpful but includes a list of functions > available in the octave library just for reference > > On Wed, Dec 17, 2008 at 9:28 AM, Abhishek Dutta <the...@gm...>wrote: > >> Hi lakesh, >> you can edit this wiki page to include the short howto >> >> http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Compilation_and_Build_Help >> >> bye >> >> >> On Wed, Dec 17, 2008 at 8:54 AM, Abhishek Dutta <the...@gm... >> > wrote: >> >>> Hi lakesh, >>> I am trying to using the C++ API for octave in kdevelop. I added the >>> "-loctave" flag in project build options. But still not working. Can you >>> write a very short howto WIKI page regarding this in RTFTR WIKI->Project >>> Plan & Progress->Kepenekci Implementation->Developer Docs. >>> >>> bye >>> >>> -- >>> Abhishek >>> http://adutta.np.googlepages.com >>> >> >> >> >> -- >> Abhishek >> http://adutta.np.googlepages.com >> >> >> ------------------------------------------------------------------------------ >> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >> Nevada. >> The future of the web can't happen without you. Join us at MIX09 to help >> pave the way to the Next Web now. Learn more and register at >> >> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >> _______________________________________________ >> Rtftr-devel mailing list >> Rtf...@li... >> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >> >> > > > -- > Have a nice day > -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-17 03:43:24
|
Hi lakesh, you can edit this wiki page to include the short howto http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Compilation_and_Build_Help bye On Wed, Dec 17, 2008 at 8:54 AM, Abhishek Dutta <the...@gm...>wrote: > Hi lakesh, > I am trying to using the C++ API for octave in kdevelop. I added the > "-loctave" flag in project build options. But still not working. Can you > write a very short howto WIKI page regarding this in RTFTR WIKI->Project > Plan & Progress->Kepenekci Implementation->Developer Docs. > > bye > > -- > Abhishek > http://adutta.np.googlepages.com > -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-17 03:10:04
|
Hi lakesh, I am trying to using the C++ API for octave in kdevelop. I added the "-loctave" flag in project build options. But still not working. Can you write a very short howto WIKI page regarding this in RTFTR WIKI->Project Plan & Progress->Kepenekci Implementation->Developer Docs. bye -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-16 13:50:38
|
Hi lakesh, Ok I will only save magnitude (instead of complex no.) for gabor coefficients. bye On Tue, Dec 16, 2008 at 7:20 PM, lakesh <lak...@gm...> wrote: > Hi Abhishek, > And also I needed to tell you that while saving the Gabor coefficient data, > you can directly compute the magnitude and save the magnitude in float. > There is no need to store the whole complex data. While calculating the > similarity we only use the magnitude of the Gabor coefficients. > > > On Tue, Dec 16, 2008 at 6:49 PM, lakesh <lak...@gm...> wrote: > >> Hi Abhishek, >> I am totally fine with it. I have already implemented the IO module using >> boost serialization. In my case I am using >> vector <vector <vector <double > > > .We can change that to float as well. >> I have already committed that to the svn in kepenekci_part2 directory. >> Check it out ok. Yes STL is ok with me :) >> >> On Tue, Dec 16, 2008 at 6:19 PM, Abhishek Dutta <the...@gm... >> > wrote: >> >>> Hi lakesh, >>> Visit the following wiki page to see the details of the storage container >>> for feature vectors that you will receive >>> >>> >>> http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Choice_of_container_for_Face-id_and_FeatureVector_mapping_and_storage >>> >>> If you have any concerns on using "vector" as the container, reply >>> quickly as I will start implementation from tomrrow. >>> >>> bye >>> >>> -- >>> Abhishek >>> http://adutta.np.googlepages.com >>> >>> >>> ------------------------------------------------------------------------------ >>> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >>> Nevada. >>> The future of the web can't happen without you. Join us at MIX09 to help >>> pave the way to the Next Web now. Learn more and register at >>> >>> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >>> _______________________________________________ >>> Rtftr-devel mailing list >>> Rtf...@li... >>> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >>> >>> >> >> >> -- >> Have a nice day >> > > > > -- > Have a nice day > -- Abhishek http://adutta.np.googlepages.com |
From: lakesh <lak...@gm...> - 2008-12-16 13:35:17
|
Hi Abhishek, And also I needed to tell you that while saving the Gabor coefficient data, you can directly compute the magnitude and save the magnitude in float. There is no need to store the whole complex data. While calculating the similarity we only use the magnitude of the Gabor coefficients. On Tue, Dec 16, 2008 at 6:49 PM, lakesh <lak...@gm...> wrote: > Hi Abhishek, > I am totally fine with it. I have already implemented the IO module using > boost serialization. In my case I am using > vector <vector <vector <double > > > .We can change that to float as well. > I have already committed that to the svn in kepenekci_part2 directory. > Check it out ok. Yes STL is ok with me :) > > On Tue, Dec 16, 2008 at 6:19 PM, Abhishek Dutta <the...@gm...>wrote: > >> Hi lakesh, >> Visit the following wiki page to see the details of the storage container >> for feature vectors that you will receive >> >> >> http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Choice_of_container_for_Face-id_and_FeatureVector_mapping_and_storage >> >> If you have any concerns on using "vector" as the container, reply quickly >> as I will start implementation from tomrrow. >> >> bye >> >> -- >> Abhishek >> http://adutta.np.googlepages.com >> >> >> ------------------------------------------------------------------------------ >> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >> Nevada. >> The future of the web can't happen without you. Join us at MIX09 to help >> pave the way to the Next Web now. Learn more and register at >> >> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >> _______________________________________________ >> Rtftr-devel mailing list >> Rtf...@li... >> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >> >> > > > -- > Have a nice day > -- Have a nice day |
From: lakesh <lak...@gm...> - 2008-12-16 13:04:40
|
Hi Abhishek, I am totally fine with it. I have already implemented the IO module using boost serialization. In my case I am using vector <vector <vector <double > > > .We can change that to float as well. I have already committed that to the svn in kepenekci_part2 directory. Check it out ok. Yes STL is ok with me :) On Tue, Dec 16, 2008 at 6:19 PM, Abhishek Dutta <the...@gm...>wrote: > Hi lakesh, > Visit the following wiki page to see the details of the storage container > for feature vectors that you will receive > > > http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Choice_of_container_for_Face-id_and_FeatureVector_mapping_and_storage > > If you have any concerns on using "vector" as the container, reply quickly > as I will start implementation from tomrrow. > > bye > > -- > Abhishek > http://adutta.np.googlepages.com > > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > _______________________________________________ > Rtftr-devel mailing list > Rtf...@li... > https://lists.sourceforge.net/lists/listinfo/rtftr-devel > > -- Have a nice day |
From: Abhishek D. <the...@gm...> - 2008-12-16 12:37:39
|
Hi Bibek, You have not ACKed yet! We don't have much choice with this integration date as we have planned a development freeze after Jan. 15, 2009 (exams preps. after that). If you cannot make it we can shift 3-4 days. By the way we will be starting from Jan 02, 2009 and not Jan 01, 2009 :) bye On Mon, Dec 15, 2008 at 9:57 PM, Anjan <roc...@gm...> wrote: > ACK > > > On Mon, Dec 15, 2008 at 7:15 AM, lakesh <lak...@gm...> wrote: > >> I ACK >> >> On Sun, Dec 14, 2008 at 7:53 PM, Abhishek Dutta <the...@gm... >> > wrote: >> >>> Hi all, >>> Make sure that you all are free during first week of Jan. 2009 as we have >>> a intensive planned integration phase during that time. >>> >>> "Everybody agreed to spare full time during first week of January 2009 >>> for intensive integration phase that will take place in IOE Library. " >>> -- quote from >>> http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Meeting_Dec_14_2008 >>> >>> Everybody ACK! >>> >>> bye >>> >>> -- >>> Abhishek >>> http://adutta.np.googlepages.com >>> >>> >>> ------------------------------------------------------------------------------ >>> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >>> Nevada. >>> The future of the web can't happen without you. Join us at MIX09 to help >>> pave the way to the Next Web now. Learn more and register at >>> >>> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >>> _______________________________________________ >>> Rtftr-devel mailing list >>> Rtf...@li... >>> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >>> >>> >> >> >> -- >> Have a nice day >> >> >> ------------------------------------------------------------------------------ >> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >> Nevada. >> The future of the web can't happen without you. Join us at MIX09 to help >> pave the way to the Next Web now. Learn more and register at >> >> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >> _______________________________________________ >> Rtftr-devel mailing list >> Rtf...@li... >> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >> >> > > > -- > Anjan Nepal > > GPO Box 11458 > Registered Linux User #395963 > > > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > _______________________________________________ > Rtftr-devel mailing list > Rtf...@li... > https://lists.sourceforge.net/lists/listinfo/rtftr-devel > > -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-16 12:34:20
|
Hi lakesh, Visit the following wiki page to see the details of the storage container for feature vectors that you will receive http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Choice_of_container_for_Face-id_and_FeatureVector_mapping_and_storage If you have any concerns on using "vector" as the container, reply quickly as I will start implementation from tomrrow. bye -- Abhishek http://adutta.np.googlepages.com |
From: Bibek S. <bib...@gm...> - 2008-12-16 11:13:54
|
I just bumped into this link http://en.wikipedia.org/wiki/Common_Intermediate_Format . And it makes sense to use the resolution for test and training videos / images in our project. 352 x 288 should be small enough for fast processing imo.. Cheers -- Bibek Shrestha bib...@gm... 9841 825 925 |
From: Anjan <roc...@gm...> - 2008-12-15 16:12:08
|
ACK On Mon, Dec 15, 2008 at 7:15 AM, lakesh <lak...@gm...> wrote: > I ACK > > On Sun, Dec 14, 2008 at 7:53 PM, Abhishek Dutta <the...@gm...>wrote: > >> Hi all, >> Make sure that you all are free during first week of Jan. 2009 as we have >> a intensive planned integration phase during that time. >> >> "Everybody agreed to spare full time during first week of January 2009 for >> intensive integration phase that will take place in IOE Library. " >> -- quote from >> http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Meeting_Dec_14_2008 >> >> Everybody ACK! >> >> bye >> >> -- >> Abhishek >> http://adutta.np.googlepages.com >> >> >> ------------------------------------------------------------------------------ >> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, >> Nevada. >> The future of the web can't happen without you. Join us at MIX09 to help >> pave the way to the Next Web now. Learn more and register at >> >> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ >> _______________________________________________ >> Rtftr-devel mailing list >> Rtf...@li... >> https://lists.sourceforge.net/lists/listinfo/rtftr-devel >> >> > > > -- > Have a nice day > > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > _______________________________________________ > Rtftr-devel mailing list > Rtf...@li... > https://lists.sourceforge.net/lists/listinfo/rtftr-devel > > -- Anjan Nepal GPO Box 11458 Registered Linux User #395963 |
From: lakesh <lak...@gm...> - 2008-12-15 02:28:24
|
I ACK On Sun, Dec 14, 2008 at 7:53 PM, Abhishek Dutta <the...@gm...>wrote: > Hi all, > Make sure that you all are free during first week of Jan. 2009 as we have a > intensive planned integration phase during that time. > > "Everybody agreed to spare full time during first week of January 2009 for > intensive integration phase that will take place in IOE Library. " > -- quote from > http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Meeting_Dec_14_2008 > > Everybody ACK! > > bye > > -- > Abhishek > http://adutta.np.googlepages.com > > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > _______________________________________________ > Rtftr-devel mailing list > Rtf...@li... > https://lists.sourceforge.net/lists/listinfo/rtftr-devel > > -- Have a nice day |
From: Abhishek D. <the...@gm...> - 2008-12-14 15:58:18
|
Hi lakesh, I have added the tasks involved in C++ implementation of kepenekci's method in the following WIKI page https://apps.sourceforge.net/mediawiki/rtftr/index.php?title=EBGM_Implementation Make changes to the tasks assigned to you as you feel necessary. bye -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-14 14:08:59
|
Hi all, Make sure that you all are free during first week of Jan. 2009 as we have a intensive planned integration phase during that time. "Everybody agreed to spare full time during first week of January 2009 for intensive integration phase that will take place in IOE Library. " -- quote from http://apps.sourceforge.net/mediawiki/rtftr/index.php?title=Meeting_Dec_14_2008 Everybody ACK! bye -- Abhishek http://adutta.np.googlepages.com |
From: Abhishek D. <the...@gm...> - 2008-12-14 02:14:38
|
Hi all, we have a review meeting today (Dec. 14, 2008) after RS Lab time (2:00PM) bye -- Abhishek http://adutta.np.googlepages.com |