Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
atduskgreg committed Mar 31, 2013
0 parents commit 0850e58
Show file tree
Hide file tree
Showing 43 changed files with 4,250 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitignore
@@ -0,0 +1,28 @@
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
distribution/Channels*

*.svn*

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath
7 changes: 7 additions & 0 deletions data/README
@@ -0,0 +1,7 @@
the data folder:
If your library is using files like images, sound files,
any data file, etc., put them into the data folder.
When coding your library you can use processing's internal loading
functions like loadImage(), loadStrings(), etc. to load files
located inside the data folder into your library.

46 changes: 46 additions & 0 deletions distribution/OpenCVPro-1/INSTALL.txt
@@ -0,0 +1,46 @@
How to install library OpenCVPro


Install with the "Add Library..." tool

New for Processing 2.0: Add contributed libraries by selecting "Add Library..."
from the "Import Library..." submenu within the Sketch menu. Not all available
libraries have been converted to show up in this menu. If a library isn't there,
it will need to be installed manually by following the instructions below.


Manual Install

Contributed libraries may be downloaded separately and manually placed within
the "libraries" folder of your Processing sketchbook. To find (and change) the
Processing sketchbook location on your computer, open the Preferences window
from the Processing application (PDE) and look for the "Sketchbook location"
item at the top.

Copy the contributed library's folder into the "libraries" folder at this
location. You will need to create the "libraries" folder if this is your first
contributed library.

By default the following locations are used for your sketchbook folder:
For Mac users, the sketchbook folder is located inside ~/Documents/Processing.
For Windows users, the sketchbook folder is located inside
'My Documents'/Processing.

The folder structure for library OpenCVPro should be as follows:

Processing
libraries
OpenCVPro
examples
library
OpenCVPro.jar
reference
src

Some folders like "examples" or "src" might be missing. After library
OpenCVPro has been successfully installed, restart the Processing
application.


If you're having trouble, have a look at the Processing Wiki for more
information: http://wiki.processing.org/w/How_to_Install_a_Contributed_Library
49 changes: 49 additions & 0 deletions distribution/OpenCVPro-1/download/OpenCVPro-1.txt
@@ -0,0 +1,49 @@
# More on this file here: http://code.google.com/p/processing/wiki/LibraryBasics
# UTF-8 supported.

# The name of your library as you want it formatted.
name = OpenCVPro

# List of authors. Links can be provided using the syntax [author name](url).
authorList = [Greg Borenstein](http://gregborenstein.com)

# A web page for your library, NOT a direct link to where to download it.
url = http://yourlibraryname.com

# The category of your library, must be one (or many) of the following:
# "3D" "Animation" "Compilations" "Data"
# "Fabrication" "Geometry" "GUI" "Hardware"
# "I/O" "Language" "Math" "Simulation"
# "Sound" "Utilities" "Typography" "Video & Vision"
#
# If a value other than those listed is used, your library will listed as
# "Other".
category = Other

# A short sentence (or fragment) to summarize the library's function. This will
# be shown from inside the PDE when the library is being installed. Avoid
# repeating the name of your library here. Also, avoid saying anything redundant
# like mentioning that it's a library. This should start with a capitalized
# letter, and end with a period.
sentence = A collection of utilities for solving this and that problem.

# Additional information suitable for the Processing website. The value of
# 'sentence' always will be prepended, so you should start by writing the
# second sentence here. If your library only works on certain operating systems,
# mention it here.
paragraph =

# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
# same syntax as for authors.
# That is, [here is a link to Processing](http://processing.org/)


# A version number that increments once with each release. This is used to
# compare different versions of the same library, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = 1 # This must be parsable as an int

# The version as the user will see it. If blank, the version attribute will be
# used here.
prettyVersion = 0.1.1 # This is treated as a String
Binary file added distribution/OpenCVPro-1/download/OpenCVPro-1.zip
Binary file not shown.
49 changes: 49 additions & 0 deletions distribution/OpenCVPro-1/download/OpenCVPro.txt
@@ -0,0 +1,49 @@
# More on this file here: http://code.google.com/p/processing/wiki/LibraryBasics
# UTF-8 supported.

# The name of your library as you want it formatted.
name = OpenCVPro

# List of authors. Links can be provided using the syntax [author name](url).
authorList = [Greg Borenstein](http://gregborenstein.com)

# A web page for your library, NOT a direct link to where to download it.
url = http://yourlibraryname.com

# The category of your library, must be one (or many) of the following:
# "3D" "Animation" "Compilations" "Data"
# "Fabrication" "Geometry" "GUI" "Hardware"
# "I/O" "Language" "Math" "Simulation"
# "Sound" "Utilities" "Typography" "Video & Vision"
#
# If a value other than those listed is used, your library will listed as
# "Other".
category = Other

# A short sentence (or fragment) to summarize the library's function. This will
# be shown from inside the PDE when the library is being installed. Avoid
# repeating the name of your library here. Also, avoid saying anything redundant
# like mentioning that it's a library. This should start with a capitalized
# letter, and end with a period.
sentence = A collection of utilities for solving this and that problem.

# Additional information suitable for the Processing website. The value of
# 'sentence' always will be prepended, so you should start by writing the
# second sentence here. If your library only works on certain operating systems,
# mention it here.
paragraph =

# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
# same syntax as for authors.
# That is, [here is a link to Processing](http://processing.org/)


# A version number that increments once with each release. This is used to
# compare different versions of the same library, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = 1 # This must be parsable as an int

# The version as the user will see it. If blank, the version attribute will be
# used here.
prettyVersion = 0.1.1 # This is treated as a String
Binary file added distribution/OpenCVPro-1/download/OpenCVPro.zip
Binary file not shown.
19 changes: 19 additions & 0 deletions distribution/OpenCVPro-1/examples/Hello/Hello.pde
@@ -0,0 +1,19 @@
import template.library.*;

HelloLibrary hello;

void setup() {
size(400,400);
smooth();

hello = new HelloLibrary(this);

PFont font = createFont("",40);
textFont(font);
}

void draw() {
background(0);
fill(255);
text(hello.sayHello(), 40, 200);
}
137 changes: 137 additions & 0 deletions distribution/OpenCVPro-1/index.html
@@ -0,0 +1,137 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>OpenCVPro</title>
<meta name="description" content="A library for the Processing programming environment" />
<meta name="keywords" content="processing.org, library, ?" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<meta name="ROBOTS" content="index,follow,archive" />
<meta http-equiv="imagetoolbar" content="false" />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta name="author" content="Greg Borenstein" />
<meta name="Rating" content="General" />
<meta name="revisit-after" content="7 Days" />
<meta name="doc-class" content="Living Document" />
<link rel="stylesheet" type="text/css" href="./stylesheet.css">
</head>
<body>
<div id="container">

<div id="header">
<h1>OpenCVPro</h1>
</div>

<div id="menu" class="clear">
<ul>
<li><a href="#about">About</a> \ </li>
<li><a href="#download">Download</a> \ </li>
<li><a href="#download">Installation</a> \ </li>
<li><a href="#examples">Examples</a> \ </li>
<li><a href="./reference/index.html" target="_blank">Reference</a></li>
<!-- <li><a href="#demos">Demos</a> \ </li> -->
<!-- <li><a href="#misc">Misc</a> \ </li> -->
<!-- <li><a href="#images">Images</a> \ </li> -->
</ul>
</div>

<div id="content" class="clear">

<div id="about">
<h2>OpenCVPro</h2>
<p>
A library by <a href="http://gregborenstein.com">Greg Borenstein</a> for the <a href="http://www.processing.org" target="_blank">Processing</a> programming environment.<br>
Last update, 03/30/2013.
</p>
<p>
A collection of utilities for solving this and that problem.<br>
<br>
Feel free to replace this paragraph with a description of the library.<br>
Contributed libraries are developed, documented, and maintained by members of the Processing community. Further directions are included with each library. For feedback and support, please post to the Discourse. We strongly encourage all libraries to be open source, but not all of them are.
</p>
</div>



<div id="download" class="clear">
<h2>Download</h2>
<p>
Download OpenCVPro version 0.1.1 (1) in
<a href="./download/OpenCVPro-1.zip">.zip format</a>.
</p>
<h2>Installation</h2>
<p>
Unzip and put the extracted OpenCVPro folder into the libraries folder of your Processing sketches. Reference and examples are included in the OpenCVPro folder.
</p>
</div>


<div id="resources">
<p><strong>Keywords</strong>. ?</p>
<p><strong>Reference</strong>. Have a look at the javadoc reference <a href="./reference/index.html" target="_blank">here</a>. A copy of the reference is included in the .zip as well.</p>
<p><strong>Source</strong>. The source code of OpenCVPro is available at <a href="http://code.google.com/p/yourProject">Google Code</a>, and its repository can be browsed <a href="http://code.google.com/p/yourProject/source/browse/" target="_blank">here</a>.</p>
</div>


<div id="examples" class="clear">
<h2>Examples</h2>
<p>Find a list of examples in the current distribution of OpenCVPro, or have a look at them by following the links below.</p>
<ul>
<li><a href="examples/Hello/Hello.pde">Hello</a></li>
</ul>
</div>


<div id="info">
<h2>Tested</h2>
<p>
<!-- on which platform has the library been tested? -->
<strong>Platform</strong> osx

<!-- which processing version did you use for testing your library? -->
<br /><strong>Processing</strong> 2.0b8

<!-- does your library depend on any other library or framework? -->
<br /><strong>Dependencies</strong> ?
</p>
</div>


<!-- use the demos section for a list of applets run in a browser. -->
<!--
<div id="demos" class="clear">
<h2>demos</h2>
<p>
find a list of online applet demos below.
<ul>
<li><a href="./applets/demo/index.html">demo</a></li>
</ul>
</p>
</div>
-->

<!-- use the misc section for other relevant information. Activate the link to the misc section in the menu above. -->
<!--
<div id="misc" class="clear">
<p></p>
</div>
-->

<!-- use the images/screenshots section. Activate the link to the misc section in the menu above. -->
<!--
<div id="images" class="clear">
</div>
-->


<br class="clear" />
</div>

<div id="footer">
<p>by Greg Borenstein, (C) 2012.</p>
</div>
</div>
</body>
</html>
31 changes: 31 additions & 0 deletions distribution/OpenCVPro-1/reference/allclasses-frame.html
@@ -0,0 +1,31 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Sat Mar 30 13:03:25 EDT 2013 -->
<TITLE>
All Classes (Javadocs: OpenCVPro)
</TITLE>

<META NAME="date" CONTENT="2013-03-30">

<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">


</HEAD>

<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameHeadingFont">
<B>All Classes</B></FONT>
<BR>

<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="gab/opencvpro/OpenCVPro.html" title="class in gab.opencvpro" target="classFrame">OpenCVPro</A>
<BR>
</FONT></TD>
</TR>
</TABLE>

</BODY>
</HTML>

0 comments on commit 0850e58

Please sign in to comment.