This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Whisky notes: http://www.whisky-pages.com/ | |
*** http://weka.wikispaces.com/Use+Weka+in+your+Java+code | |
- http://cran.r-project.org/web/views/Bayesian.html - a metric shit tonne of packages for R | |
- http://www.celiagreen.com/charlesmccreery/statistics/bayestutorial.pdf - Greate illustrated guide to bayesian trees | |
- http://www.cs.waikato.ac.nz/~remco/weka_bn/bayesnet.html | |
- http://en.wikipedia.org/wiki/Chain_rule_(probability) - Chain Rule of probablity | |
- http://aima.cs.berkeley.edu/ - AI a Modern Approach (full HTML online) | |
- http://www.labmedinfo.org/sites/default/files/file/publications/lmi339.pdf - Hierarchical Bayes Clasifiers for Uncertain Data | |
- http://people.csail.mit.edu/jrennie/papers/icml03-nb.pdf - Naieve Bayes Text Classifiers | |
- https://www.cra.com/pdf/bnetbuilderbackground.pdf - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Runtime.InteropServices; | |
public class imageProcessing : MonoBehaviour { | |
[DllImport ("__Internal")] | |
private static extern void UpdateTexture(System.IntPtr colors, int width, int height); | |
WebCamTexture webcamTexture; | |
Texture2D texture = null; |