├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── detection_icon.png ├── next.png ├── pause.png ├── play.png └── refresh.png ├── clean.sh ├── common.py ├── detection.py ├── detector.py ├── docs ├── epydoc.conf ├── epydoc.css └── epydoc │ ├── PyQt5.QtCore.QThread.Priority-class.html │ ├── PyQt5.QtGui.QPaintDevice.PaintDeviceMetric-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.CursorAction-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.DragDropMode-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.DropIndicatorPosition-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.EditTrigger-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.EditTriggers-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.ScrollHint-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.ScrollMode-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.SelectionBehavior-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.SelectionMode-class.html │ ├── PyQt5.QtWidgets.QAbstractItemView.State-class.html │ ├── PyQt5.QtWidgets.QAbstractScrollArea.SizeAdjustPolicy-class.html │ ├── PyQt5.QtWidgets.QFrame.Shadow-class.html │ ├── PyQt5.QtWidgets.QFrame.Shape-class.html │ ├── PyQt5.QtWidgets.QFrame.StyleMask-class.html │ ├── PyQt5.QtWidgets.QWidget.RenderFlag-class.html │ ├── PyQt5.QtWidgets.QWidget.RenderFlags-class.html │ ├── api-objects.txt │ ├── class-tree.html │ ├── clustering-module.html │ ├── clustering-pysrc.html │ ├── clustering.clusterer-module.html │ ├── clustering.clusterer-pysrc.html │ ├── clustering.clusterer.Clusterer-class.html │ ├── clustering.clusterer.Graph-class.html │ ├── clustering.clustering-module.html │ ├── clustering.clustering-pysrc.html │ ├── clustering.clustering.Clusterer-class.html │ ├── clustering.clustering.ClustererArgsParser-class.html │ ├── clustering.clustering.ClustererThread-class.html │ ├── clustering.clustering.Clustering-class.html │ ├── clustering.clustering.EmittingStream-class.html │ ├── clustering.clustering.Window-class.html │ ├── clustering.setup-module.html │ ├── clustering.setup-pysrc.html │ ├── clustering.voronoi-module.html │ ├── clustering.voronoi-pysrc.html │ ├── clustering.voronoi1-module.html │ ├── clustering.voronoi1-pysrc.html │ ├── crarr.png │ ├── detection-module.html │ ├── detection-pysrc.html │ ├── detection.common-module.html │ ├── detection.common-pysrc.html │ ├── detection.common.CustomException-class.html │ ├── detection.common.EmittingStream-class.html │ ├── detection.detection-module.html │ ├── detection.detection-pysrc.html │ ├── detection.detection.EmittingStream-class.html │ ├── detection.detection.MediaThread-class.html │ ├── detection.detection.VideoThread-class.html │ ├── detection.detection.Window-class.html │ ├── detection.detector-module.html │ ├── detection.detector-pysrc.html │ ├── detection.detector.ClassifierParameters-class.html │ ├── detection.detector.Detector-class.html │ ├── detection.setup-module.html │ ├── detection.setup-pysrc.html │ ├── detection.tree-module.html │ ├── detection.tree-pysrc.html │ ├── detection.tree.Node-class.html │ ├── detection.tree.Tree-class.html │ ├── detection.window_ui-module.html │ ├── detection.window_ui-pysrc.html │ ├── detection.window_ui.QTreeView-class.html │ ├── detection.window_ui.WindowUI-class.html │ ├── epydoc.css │ ├── epydoc.js │ ├── frames.html │ ├── help.html │ ├── identifier-index.html │ ├── index.html │ ├── module-tree.html │ ├── redirect.html │ ├── toc-clustering-module.html │ ├── toc-clustering.clusterer-module.html │ ├── toc-clustering.clustering-module.html │ ├── toc-clustering.setup-module.html │ ├── toc-clustering.voronoi-module.html │ ├── toc-clustering.voronoi1-module.html │ ├── toc-detection-module.html │ ├── toc-detection.common-module.html │ ├── toc-detection.detection-module.html │ ├── toc-detection.detector-module.html │ ├── toc-detection.setup-module.html │ ├── toc-detection.tree-module.html │ ├── toc-detection.window_ui-module.html │ ├── toc-everything.html │ └── toc.html ├── faces ├── bean.png ├── hannibal.png ├── mask.png ├── norton.png ├── v.png └── watson.png ├── haarcascades ├── coke16x49.xml ├── duck_25x24.xml ├── haarcascade_eye.xml ├── haarcascade_eye_tree_eyeglasses.xml ├── haarcascade_frontalface_alt.xml ├── haarcascade_frontalface_alt2.xml ├── haarcascade_frontalface_alt_tree.xml ├── haarcascade_frontalface_default.xml ├── haarcascade_fullbody.xml ├── haarcascade_lefteye_2splits.xml ├── haarcascade_lowerbody.xml ├── haarcascade_mcs_eyepair_big.xml ├── haarcascade_mcs_eyepair_small.xml ├── haarcascade_mcs_leftear.xml ├── haarcascade_mcs_lefteye.xml ├── haarcascade_mcs_mouth.xml ├── haarcascade_mcs_nose.xml ├── haarcascade_mcs_rightear.xml ├── haarcascade_mcs_righteye.xml ├── haarcascade_mcs_upperbody.xml ├── haarcascade_pen.xml ├── haarcascade_profileface.xml ├── haarcascade_righteye_2splits.xml ├── haarcascade_smile.xml ├── haarcascade_upperbody.xml └── key50x20.xml ├── icon.c4d ├── icon.icns ├── other ├── libqcocoa.dylib ├── mask.png └── qt.conf ├── output ├── setup.py ├── src ├── createsamples.pl ├── flip.py └── mergevec.cpp ├── tree.py └── window_ui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/detection_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/assets/detection_icon.png -------------------------------------------------------------------------------- /assets/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/assets/next.png -------------------------------------------------------------------------------- /assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/assets/pause.png -------------------------------------------------------------------------------- /assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/assets/play.png -------------------------------------------------------------------------------- /assets/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/assets/refresh.png -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/clean.sh -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/common.py -------------------------------------------------------------------------------- /detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/detection.py -------------------------------------------------------------------------------- /detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/detector.py -------------------------------------------------------------------------------- /docs/epydoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc.conf -------------------------------------------------------------------------------- /docs/epydoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc.css -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtCore.QThread.Priority-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtCore.QThread.Priority-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtGui.QPaintDevice.PaintDeviceMetric-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtGui.QPaintDevice.PaintDeviceMetric-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.CursorAction-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.CursorAction-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.DragDropMode-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.DragDropMode-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.DropIndicatorPosition-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.DropIndicatorPosition-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.EditTrigger-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.EditTrigger-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.EditTriggers-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.EditTriggers-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.ScrollHint-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.ScrollHint-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.ScrollMode-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.ScrollMode-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.SelectionBehavior-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.SelectionBehavior-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.SelectionMode-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.SelectionMode-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.State-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractItemView.State-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QAbstractScrollArea.SizeAdjustPolicy-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QAbstractScrollArea.SizeAdjustPolicy-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QFrame.Shadow-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QFrame.Shadow-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QFrame.Shape-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QFrame.Shape-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QFrame.StyleMask-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QFrame.StyleMask-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QWidget.RenderFlag-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QWidget.RenderFlag-class.html -------------------------------------------------------------------------------- /docs/epydoc/PyQt5.QtWidgets.QWidget.RenderFlags-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/PyQt5.QtWidgets.QWidget.RenderFlags-class.html -------------------------------------------------------------------------------- /docs/epydoc/api-objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/api-objects.txt -------------------------------------------------------------------------------- /docs/epydoc/class-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/class-tree.html -------------------------------------------------------------------------------- /docs/epydoc/clustering-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clusterer-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clusterer-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clusterer-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clusterer-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clusterer.Clusterer-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clusterer.Clusterer-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clusterer.Graph-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clusterer.Graph-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.Clusterer-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.Clusterer-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.ClustererArgsParser-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.ClustererArgsParser-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.ClustererThread-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.ClustererThread-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.Clustering-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.Clustering-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.EmittingStream-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.EmittingStream-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.clustering.Window-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.clustering.Window-class.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.setup-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.setup-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.setup-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.setup-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.voronoi-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.voronoi-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.voronoi-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.voronoi-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.voronoi1-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.voronoi1-module.html -------------------------------------------------------------------------------- /docs/epydoc/clustering.voronoi1-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/clustering.voronoi1-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/crarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/crarr.png -------------------------------------------------------------------------------- /docs/epydoc/detection-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.common-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.common-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.common-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.common-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.common.CustomException-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.common.CustomException-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.common.EmittingStream-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.common.EmittingStream-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection.EmittingStream-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection.EmittingStream-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection.MediaThread-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection.MediaThread-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection.VideoThread-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection.VideoThread-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detection.Window-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detection.Window-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detector-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detector-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detector-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detector-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detector.ClassifierParameters-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detector.ClassifierParameters-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.detector.Detector-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.detector.Detector-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.setup-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.setup-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.setup-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.setup-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.tree-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.tree-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.tree-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.tree-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.tree.Node-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.tree.Node-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.tree.Tree-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.tree.Tree-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.window_ui-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.window_ui-module.html -------------------------------------------------------------------------------- /docs/epydoc/detection.window_ui-pysrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.window_ui-pysrc.html -------------------------------------------------------------------------------- /docs/epydoc/detection.window_ui.QTreeView-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.window_ui.QTreeView-class.html -------------------------------------------------------------------------------- /docs/epydoc/detection.window_ui.WindowUI-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/detection.window_ui.WindowUI-class.html -------------------------------------------------------------------------------- /docs/epydoc/epydoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/epydoc.css -------------------------------------------------------------------------------- /docs/epydoc/epydoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/epydoc.js -------------------------------------------------------------------------------- /docs/epydoc/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/frames.html -------------------------------------------------------------------------------- /docs/epydoc/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/help.html -------------------------------------------------------------------------------- /docs/epydoc/identifier-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/identifier-index.html -------------------------------------------------------------------------------- /docs/epydoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/index.html -------------------------------------------------------------------------------- /docs/epydoc/module-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/module-tree.html -------------------------------------------------------------------------------- /docs/epydoc/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/redirect.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering.clusterer-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering.clusterer-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering.clustering-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering.clustering-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering.setup-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering.setup-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering.voronoi-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering.voronoi-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-clustering.voronoi1-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-clustering.voronoi1-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.common-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.common-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.detection-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.detection-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.detector-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.detector-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.setup-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.setup-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.tree-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.tree-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-detection.window_ui-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-detection.window_ui-module.html -------------------------------------------------------------------------------- /docs/epydoc/toc-everything.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc-everything.html -------------------------------------------------------------------------------- /docs/epydoc/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/docs/epydoc/toc.html -------------------------------------------------------------------------------- /faces/bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/bean.png -------------------------------------------------------------------------------- /faces/hannibal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/hannibal.png -------------------------------------------------------------------------------- /faces/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/mask.png -------------------------------------------------------------------------------- /faces/norton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/norton.png -------------------------------------------------------------------------------- /faces/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/v.png -------------------------------------------------------------------------------- /faces/watson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/faces/watson.png -------------------------------------------------------------------------------- /haarcascades/coke16x49.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/coke16x49.xml -------------------------------------------------------------------------------- /haarcascades/duck_25x24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/duck_25x24.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_eyepair_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_eyepair_big.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_eyepair_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_eyepair_small.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_leftear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_leftear.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_lefteye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_lefteye.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_mouth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_mouth.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_nose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_nose.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_rightear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_rightear.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_righteye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_righteye.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_mcs_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_mcs_upperbody.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_pen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_pen.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_profileface.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_smile.xml -------------------------------------------------------------------------------- /haarcascades/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /haarcascades/key50x20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/haarcascades/key50x20.xml -------------------------------------------------------------------------------- /icon.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/icon.c4d -------------------------------------------------------------------------------- /icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/icon.icns -------------------------------------------------------------------------------- /other/libqcocoa.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/other/libqcocoa.dylib -------------------------------------------------------------------------------- /other/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/other/mask.png -------------------------------------------------------------------------------- /other/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/other/qt.conf -------------------------------------------------------------------------------- /output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/output -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/setup.py -------------------------------------------------------------------------------- /src/createsamples.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/src/createsamples.pl -------------------------------------------------------------------------------- /src/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/src/flip.py -------------------------------------------------------------------------------- /src/mergevec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/src/mergevec.cpp -------------------------------------------------------------------------------- /tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/tree.py -------------------------------------------------------------------------------- /window_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsyann/detection/HEAD/window_ui.py --------------------------------------------------------------------------------