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

Search:

Type: Posts; User: Chrono251

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,273

    Re: Real time position calculation

    Thanks for your reply!

    You are right about time measurement, it's also easier to implement it they way you suggested.

    Graphics are pretty simple, the output is something that looks like this:...
  2. Replies
    2
    Views
    1,273

    Real time position calculation

    Hi everyone!
    I'm developing a small program that is supposed to simulate a plane flying and to show the position relative to a ground station on a gauge.
    I wrote the code to draw the gauge with...
  3. Replies
    1
    Views
    1,898

    Debugging errors in BackgroundWorker

    Hi!
    I'm using the backgroundworker in an MDI application. The backgroundworker is used in each of the MDI children to analyze some parameters.
    Sometimes there is an error during the analysis, but...
  4. Replies
    1
    Views
    878

    Re: Auto network credentials

    Ok, it seems that what I want to do is not possible.
    The reason is security of information, it would be quite easy to steal login information from a user if the password was available.

    I ended...
  5. Replies
    1
    Views
    878

    Auto network credentials

    Hi!
    I'm writing a program that reads some data from a website to do some calculations and display the results on the GUI.
    The program works correctly without a proxy, but unfortunately it is going...
  6. Replies
    0
    Views
    537

    Understanding multithreading

    I'd like to add multithreading to an application I'm developing, so I'm reading may tutorials and articles online about that.

    I wrote have a function that:
    1. reads the data from an array;
    2....
  7. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    Another update after some tests I did.

    The Hough transform library in AForge works great for normal pictures. It works also for my project, but not as well: the problem here is that I don't want...
  8. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    I found some articles on an Italian University's website that explains the Hough transform.
    This looks like the way to go, as it purpose is to find lines and other shapes (like circles) in an image....
  9. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    I tried to use PCA in my project and I wrote a function that determines the eigenvector and eigenvalues for the blob being analyzed.
    I use the eigenvector to determine the inclination angle of the...
  10. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    Just an update.
    I spent some time reading all the documents and other stuff I found online, and in the meantime I've been working on my project.

    I tried to solve the problem with a different...
  11. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    Initially I would just use the index to give a digital indication of the focus quality, maybe I could also plot a graph.

    But potentially it can be also use to create some sort of "autofocus"...
  12. Replies
    10
    Views
    6,756

    Re: Shape detection in image

    Thanks for the answers!
    I'm realizing how hard computer vision can be! :D

    I'll check out OpenCV and read the papers in the next few days. I also found a C++ demo of PCA and Harr method for face...
  13. Replies
    10
    Views
    6,756

    Shape detection in image

    Hi everyone!
    I'm pretty new to C#, as I used to program in VB and VB.NET in the past (migration to C# is pretty easy I have to say).

    I'm also into astrophotography and I'm developing a program to...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured