-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCamera.cpp
More file actions
63 lines (49 loc) · 1.75 KB
/
Camera.cpp
File metadata and controls
63 lines (49 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*****************************************************************************
----------------------------Warning----------------------------------------
此段程式碼僅供 林書緯本人 履歷專用作品集,未經許可請勿使用與散播
部分程式碼改自
---O'Reilly, "Data Science from Scratch", Joel Grus, ISBN 978-1-4979-0142-7
---博碩, "Python 機器學習", Sebastian Raschka", ISBN 978-986-434-140-5
的Python程式碼
---電子工業出版社, "OpenCV 圖像處理編程實例", 朱偉,趙春光 等編著", ISBN 978-7-121-28573-8
的C++演算法程式碼
---碁峰, "The C++ Programming Language", Bjarne Stroustrup, ISBN 978-986-347-603-0
的C++範例程式
---code by 林書緯 2017/09/26
******************************************************************************/
#include "cvlib.h"
#include "DemoML.h"
using namespace std;
int main(void)
{
//-------機器學習相關演算法展示-------
//Demo_Neuron();
//Demo_NeuralNetwork();
//Demo_Ngram();
//Demo_DecisionTree();
//Demo_random_forest();
//Demo_KNN();
//Demo_users_internet();
//Demo_interest_topics();
//Demo_bottom_up_cluster();
//Demo_NaiveBayesClassifier();
//圖像計算,約3~5分鐘
//Demo_Kmeans();
//-------OpenCV影像相關演算法展示-------
//Demo_detect_car_plate();
//Demo_detect_car_plate_Morphology();
//Demo_detect_car_plate_MSER(); //Debug模式world330d.lib有bug 請使用Release Mode
//Demo_dectect_Skin();
//Demo_detect_face();
//Demo_track_eye();
//Demo_cacHOGFeature();
//Demo_LPBFeature();
//Demo_charFeature();
//Demo_ORB_Match(); //Debug模式world330d.lib有bug 請使用Release Mode
//Demo_Image_Comparison();
//Demo_Hisogram_analysis();
//Demo_MBitPlan();
//Demo_watershedSegment();
system("pause");
return 0;
}