CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: yiannakop

Page 1 of 42 1 2 3 4

Search: Search took 0.30 seconds.

  1. Replies
    0
    Views
    981

    Manual Speech Emotion Annotation

    Hi everybody.
    We are working on emotion classification of speech from movies. In order to built a new dataset of manually annotated speech, we have created an online interface available at:
    ...
  2. Replies
    9
    Views
    7,673

    Re: Download directory using FTP

    Thanx alot. I used the connect() method with the port argument (and even tried setDefaultPort(). The problem is that I want to use port 22, in order to connect to a sftp server. And I get a java...
  3. Replies
    2
    Views
    1,205

    Re: calling Matlab from c++ program

    You'll need to use the Matlab add in for visual studio. Here is an example:
    http://www.codeproject.com/KB/macros/using_matlab_add_in.aspx

    And here is the Mathworks' instructions for setting up...
  4. Replies
    1
    Views
    898

    Re: request for matlab

    I am note sure I completely understand your question. Do you simply want to draw a line in a matlab figure? If this is so, you can use the ginput() command. For example:


    hold on;
    [x,y] =...
  5. Replies
    9
    Views
    7,673

    Re: Download directory using FTP

    Ok guys, as HackmanC suggested I used apache common jar files and I managed to open ftp connections. Now I have another question. The sample code I found downloads a file and its sth like this:


    ...
  6. Replies
    9
    Views
    7,673

    Re: Download directory using FTP

    Thanx alot, but this is not a free javaftp client...
  7. Replies
    2
    Views
    3,672

    Re: Help: MATLAB project!

    Hi. I didnt understand what do you mean "read sentences"? I mean, how the user interacts with the program? Please give some details.
    Regards,
    Theodore
  8. Replies
    9
    Views
    7,673

    Re: Download directory using FTP

    Thanx for the reply but I have already read this archive and that didnt help me.
    Any other ideas?
    Regards,
    Theodore
  9. Replies
    9
    Views
    7,673

    Re: Download directory using FTP

    Ok, I have another question. I am trying to simply download a file (known) URL from an FTP server I have. Here's the code:


    try{
    URL url = new...
  10. Replies
    9
    Views
    7,673

    Download directory using FTP

    Hi everyone. I am looking for an easy way to download the contents of a whole directory from an FTP server using Java. Any ideas?

    Regards,
    Theodore
  11. Replies
    2,690
    Views
    1,013,476

    Re: What Song Are You Listening To Now¿

    Pixies - Hey (live):
    http://www.youtube.com/watch?v=aUTcw1D3abg
    :wave:
  12. Replies
    3
    Views
    1,419

    Re: Copy only sub directories through XCopy

    http://www.ss64.com/nt/xcopy.html
  13. Re: Read & write multiple images by single execution(Matlab)?

    Hi. I forgot to say that it is better to use strcmpi() instead of strcmp(), in order to ignore case differences (e.g. .PNG files could be found...)
    :wave:
  14. Replies
    1
    Views
    1,387

    Re: Help with convolution algorithm

    First of all, when convolving 2 sequences of length M and L the output sequence has length M+L-1. Here is an example of convolving two sequences in C:


    for (n = 0; n < L+M; n++)
    {
    y[n] = 0;...
  15. Re: Congrats PeejAvery for an amaizng 6043 posts

    Well done! :thumb: :thumb:
  16. Re: Read & write multiple images by single execution(Matlab)?

    Yes you are right.


    Any time! :wave:
  17. Re: Congrats to yiannakop for an amazing 1000 posts.

    Thanx alot guys! And thank u all codeguru members for the amazing help all this time. :wave:
  18. Replies
    3
    Views
    1,036

    Re: Web page Ranging for search engines

    Thanx alot. The site looks good, but it seems it works for a specific number of web pages and not for the page I am interested in. Anyway thanx for the idea.
    Regards,
    Theodore
  19. Re: Read & write multiple images by single execution(Matlab)?

    First of all, D(i).name is the whole file name. We want to compare the extension of each file name (i.e. of each D(i).name), because in the given folder you may have files of other types which you...
  20. Re: Read & write multiple images by single execution(Matlab)?

    Hi!


    Yes for() is used for looping through all files of the directory. We start at 3 because the 1st file of ANY directory is the '.' and the 2nd is the '..' directory, just like when you type...
  21. Replies
    7
    Views
    1,452

    Re: Some kind of virus - Shutdown disabled

    Thanx for the reply. I checked this registry entry and it was correct. Any other ideas.
    Sth else: I forgot to say that apart from the other problems, the language tool (right bottom of the task...
  22. Re: Read & write multiple images by single execution(Matlab)?

    Yes you can do this in matlab. Here is the code (in general):



    dirName = 'MyDir';
    D = dir(dirName); % check dir command, in matlab documentation
    for (i=3:length(D)) % for each file in the...
  23. Replies
    7
    Views
    1,452

    Re: Some kind of virus - Shutdown disabled

    Thanx for the answer. I tested a couple of antiviruses / anti-spywares etc and I think that the system is clear of viruses now. The links of the programs that do not run are not deleted, since if I...
  24. Replies
    3
    Views
    1,036

    Web page Ranging for search engines

    Hi everyone. Does anybody know any good (and free) tools for testing the ranking of a webpage for searching engines like google?
    Thanx in advance, :wave:
    Theodore
  25. Replies
    38
    Views
    69,000

    Re: Color Detection Algorithm

    Any time :wave:



    Yes you need to have a "manual" stage involving in your training process and that happens in general. So, yes you will have to execute selectPixelsAndGetHSV(), and to be...
Results 1 to 25 of 1034
Page 1 of 42 1 2 3 4





Click Here to Expand Forum to Full Width

Featured