ggmendez / iVoLVER_For_Experiments

Version of iVoLVER used in qualitative experiments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iVoLVER

iVoLVER is a tool that allows users to create visualizations without textual programming. It is designed to enable flexible acquisition of many types of data (text, colors, shapes, quantities, dates) from multiple source types (bitmap charts, webpages, photographs, SVGs, CSV files) and, within the same canvas, supports transformation of that data through simple widgets to construct interactive animated visuals.

Aside from the tool, which is web-based and designed for pen and touch, we contribute the design of the interactive visual language and widgets for extraction, transformation, and representation of data. We demonstrate the flexibility and expressive power of the tool through a set of scenarios, and discuss some of the challenges encountered and how the tool fits within the current infovis tool landscape.

Scenarios

Source Code

iVoLVER source code is available under the MIT license.

The code is organized as a Netbeans project that includes:

  • 1. The iVoLVER web client (HTML + JavaScript) that implements the user interface using the following libraries:

  • 2. The Image processing server program (mostly implemented under src/java/classes), with the computer vision routines that recognize text and extract data from images. This module is written in Java and uses the following dependencies:

Communication between the client and the server is achieved through Java servlets (included in src/java/servlets).

Running iVoLVER from the source code

The easies way to depploy the iVoLVER is from Netbeans, by opening the root directory as a Netbeans project.

Configuring OpenCV

You will have to modify the OpenCVLoader class in src/java/classes to load to the right OpenCV DLL file. If you have added the DLL to your PATH, you could use:

System.loadLibrary( Core.NATIVE_LIBRARY_NAME );

Otherwise, you will need to use the System.load method specifying the full path to the DLL file:

String OpenCV_DLL_Path = <absolute_path_to_your_DLL_file>;
System.load(OpenCV_DLL_Path);
Configuring the text recognition module

Remember to set the TESSDATA_PREFIX environment variable pointing to the parent directory of your tessdata folder containing the traineddata files needed for the text recognition.

Contact

If you are interested in iVoLVER, send us an email to ggm@st-andrews.ac.uk

MIT License

Copyright (c) 2006 University of St Andrews (Gonzalo Gabriel MĂ©ndez, Miguel A. Nacenta)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Version of iVoLVER used in qualitative experiments


Languages

Language:HTML 49.7%Language:JavaScript 45.2%Language:CSS 2.0%Language:Java 1.8%Language:CoffeeScript 0.7%Language:PHP 0.3%Language:ActionScript 0.2%Language:Go 0.0%Language:Python 0.0%Language:Ruby 0.0%Language:CMake 0.0%Language:Shell 0.0%Language:Makefile 0.0%