Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Which of these (https://stackoverflow.com/questions/492893/graph-drawing-c-library) libraries can be used to evaluate nodes coordinates? I mean I want to draw and manipulate graph by clicking on it to add some nodes or delete, and then evaluate coordinates using some lightweight library.
All I need is algorithm which could on dot file and speciefied layout (http://en.wikipedia.org/wiki/DOT_language) give me conformity of graph nodes and 2D points.
Prefferable languages: C++, C#, Java
I made a complete WPF MVVM sample of a "Nodes Editor" supporting drag and drop, and many interesting visual features. It looks like this:
Full Source Code on GitHub
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am attempting to develop a web page in which the codebehind draws diagrams. I have an analagous forms application which uses a picturebox, and the replies to the question here suggest I should use an Image Control.
But it isn't obvious how I should set about drawing my triangles and circles on this control. So: is an image control what I want? If so, can someone direct me to a tutorial or an example as to how to draw on it?
If it isn't, what should I be using? (What I am drawing isn't a graph.)
Don't do this on the server. Use client-side libraries. What you can do on the server - is prepare data for the diagram, send it to the client to do actual drawing.
For example mxGraph library has a nice .NET component that builds XML for the diagram on the server and then client-side draws diagram based on that XML.
The above is a commercial products, but there're free alternatives out there as well.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I would like to know a way to create a video (format doesn't matter) out of images from the hard drive. I've been searching for a while and here are the solutions I've tried:
AForge.Video.ffmpeg: causes exceptions while loading dependencies even though everything is in place
Bytescout image to video SDK: this one actually works but the problem is that the demo version leaves water mark on the video (the full version costs a ton)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
For my university final project I want to make a program that allows me to control my avatar using the Kinect.
I have already got the Kinect to track the user head and hands, but what can I do to get the Kinect to work with an avatar?
Is there any tutotrials or some sort of guidance out there? Can't really find anything concrete
Here are a couple of samples I would recommend for what you want:
Avateering Sample (Demonstrates how to use the Joint Orientation API )
Skeleton Basics (Demo's capturing skeletons and displaying them on screen)
How to Draw a skeleton (if you are using Kinect V2)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for an open-source iTunes style media player that I can use as a base for functionality I would like to develop. I am quite keen on Flex/Air, or C# or Java will do for languages.
Does anyone know of any projects?
Banshee uses C# and GTK#. My favorite media player
For AIR, check out Social Media Player
You may check if any of the 10 media centers compared here http://telematicsfreedom.org/en/flossmediacenter might suit your needs.
http://projects.gnome.org/rhythmbox/
Sorry, only C and python.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things.
I can find lots of them for Java, but none for .net...
Thanks!
http://graphsharp.codeplex.com/ (Nice "visualisation aspect of things" :)
(...and for the "oldie" GraphViz, you can get no less than 3 language bindings for C#)
http://satsumagraph.sourceforge.net
Has force-directed graph layout (charged particles & springs model).
http://zedgraph.org/wiki/index.php?title=Main_Page
Tried it before...works great.