visualization

using Google Guice GraphViz extension and private modules.

Hi, I have simple private module: public class SomePrivateModule extends PrivateModule { @Override protected void configure() { bind(SomeInterface.class). annotatedWith(SomeAnotation.class). to(SomeClass.class); expose(SomeInterface.class).annotatedWith(SomeAnotation.class); bind(S...

Plotting linear inequalities in Mathematica

Update: Incorporating suggestions below, here's the version I ended up using to plot feasible region of a system of linear inequalities (* Plots feasible region of a linear program in 3 variables, \ specified as cons[[1]]>=0,cons[[2]]>=0,... Each element of cons must \ be an expression of variables x,y,z only *) plotFeasible3D[cons_] ...

javascript framework for relationship visualization

I need to create a dynamic visualization for nodes and their relationships in Javascript. What's the best framework to use? This is what I've briefly reviewed so far: Flare - it's Flash and hasn't been updated in almost 2 years. JavaScript InfoVis Toolkit - interaction seems a little slow, maybe that's on purpose in the demos Protovi...

Records spanning over multiple lines in graphviz

Hi everyone, I am trying to visualize a rather complex structure in the dot language. Because the record is big, I would like to write the code in mulitple lines. So instead of: A11[label="A.11 Access Control|{A.11.1 Business requirements for access control|A.11.2 User access management}|{A.11.3 User responsibilities|A.11.4 Network acc...

Library for visualizing object graphs in .NET

Does anyone know of, or can recommend, a library that can recursively visualize an arbitrary object graph in .NET? I need to be able to print out (to the console) a formatted representation of an object graph. For example, given a simple object graph like this: var foo = new Foo(); foo.Bar = new Bar(); foo.Bar.Baz = 42; foo.Bar.Qux = "...

Trying to remember name of a code visualization experimental tool

I recall a while back seeing an experimental code visualization tool, with the intention being to enable a user to manually track interconnectivity between different parts of their code for the purposes of implementing specific features. In particular, a user could pull out a window into their code and associate it with a completely dif...

Plotting/visualising 3D objects in Java?

I know there's Java3D, but from what I also know it's not fit for what I want to do, which is, based on a series of pictures to plot a 3D image on the screen. For instance lets say we have XX-XXXX (or more) pictures of a human face, we process them and then (using the points gathered in that process) we want to reconstruct it (the face) ...

How do I animate a protovis streamgraph?

I'm having trouble figuring out how to animate a protovis streamgraph. I think the best way is to simply pass an array of i, j indexes to .layers() and have the .x() and .y() functions look up the actual updating values. Is there a simpler way? ...

Draw waveform for microphone in flex, is it possible?

I'm making a audio recorder with Adobe Flex (Microphone, NetStream), I want to get the current audio wave from Microphone to display in the visualization area, any idea how can i get the data? ...

VTK swap out rendering codeblock?

Hi, since some days I'm working with the VTK and I need some help. Is it possible to swap out the rendering codeblock?Like this: void display(XXXXXX) { vtkActor actor = new vtkActor(); actor.SetMapper(XXXXXXX); vtkRenderer ren2 = new vtkRenderer(); ren2.AddActor(actor); vtkRenderWindow ren...

Visualising C structs?

Hi all, I am using Ubuntu 10.04, and studying programming of kernel objects. I have come across some rather complicated structs which I have difficulties reading, so I thought I'd try to find some tool that can help me visualise them. Only thing I could find so far is VCG, which has a C Struct Visualization Example, which looks like...

Social network visualization tools for PHP/JavaScript

I'm looking for a tool that will allow me to display visualizations of social networks dynamically online. There are a lot of great visualization examples out there already: http://www.readwriteweb.com/archives/the_best_tools_for_visualization.php http://socialmediatrader.com/10-amazing-visualizations-of-social-networks/ I know lots ...

Using Google's Visualization API and Closure to generate a BarChart.

I have a web page that uses Google's Visualization API to generate a timeline but now that I'm trying to add some jQuery stuff to it, things are falling over. So, I'm trying to do it with Closure. However I can't seem to find any examples of how to use the Visualization API under Closure. Does anyone know where I can find any examples? ...

Visualization of river- animation via code

I am trying to visualize a river flow- basically, should be able to visualize river current direction and speed based on an user-defined external parameter. This is required to demonstrate vectors in two dimensions- given education needs, animation quality can be minimal- 'tolerable enough'. I tried a simplistic approach by a blue backg...

How to visualize the behavior of many concurrent multi-stage processes?

Suppose I've got a ton (a continuous stream) of requests to process, and each request has several stages. For example: "connecting to data source", "reading data from data source", "validating data", "processing data", "connecting to data sink", "writing result to data sink". Which visualization methods or even tools fit well to visuali...

Visualizing a geometric problem with mathematica

I am trying to figure out a way to move two points, X and Y, independently of one another along the edges of an equilateral triangle with vertices A, B, and C. There are also some collision rules that need to be taken into account: (1) If X is at a vertex, say vertex A, then Y cannot be on A or on the edges adjacent to it. i.e., Y ca...

Is Mole for Visual Studio by Karl Shifflett still active?

I've been reading about Mole and am interested in trying it but it doesn't look like it's being kept up to date as there's no mention in the documentation of Windows 7 or Visual Studio 2010. Is the project still active or is it now obsolete because there's a better alternative? Has anyone managed to get it working with Windows 7 and Visu...

Flow chart generator from source files

I'm searching for a tool that let me generate a flow chart for a given project. It is difficult understand others code by looking at code, a flow chart can be very helpful. My Project is in VS 2010 Professional Edition. ...

Good Fast Way to Let Users Visualize and Explore Relational Data?

I'm looking for either a web-based or Windows-based way to point to a relational data source using automated schema exploration (or, even better, a reflection-based approach that would work on any IQueryable in-memory data source) and allow easy exploration of data, traversing between records in related tables, etc. Basically a dynamic ...