-
安装OpenCv到"C:\opencv"
-
编辑环境变量
- 命令提示符(管理员)
/** | |
* Note: The returned array must be malloced, assume caller calls free(). | |
*/ | |
typedef struct hashTableNode { | |
int val; | |
int idx; | |
struct hashTableNode* next; | |
} hashTableNode; |
/** | |
* Definition for singly-linked list. | |
* struct ListNode { | |
* int val; | |
* struct ListNode *next; | |
* }; | |
*/ | |
typedef struct ListNode ListNode; |
int lengthOfLongestSubstring(char* s) { | |
int r, c, i, j; | |
int hash[256] = { 0 }; | |
unsigned char * us = s; | |
if (us[0] == '\0') { | |
return 0; | |
} | |
r = 0; | |
i = 0; | |
j = 0; |
<!DOCTYPE html><html><head><meta charset="utf-8"><style>body { | |
width: 45em; | |
border: 1px solid #ddd; | |
outline: 1300px solid #fff; | |
margin: 16px auto; | |
} | |
body .markdown-body | |
{ | |
padding: 30px; |
Get the original code.
Install adb interface driver
1.6relayd fireware-start
ip6tables -F
ip6tables -P INPUT ACCEPT
ip6tables -P FORWARD ACCEPT
wan-start
/jffs/bin/6relayd -d -A vlan2 br0
## Refer to http://caffe.berkeleyvision.org/installation.html | |
# Contributions simplifying and improving our build system are welcome! | |
# cuDNN acceleration switch (uncomment to build with cuDNN). | |
# USE_CUDNN := 1 | |
# CPU-only switch (uncomment to build without GPU support). | |
CPU_ONLY := 1 | |
# uncomment to disable IO dependencies and corresponding data layers |
name: "exp_113_cls" | |
layer { | |
name: "data" | |
type: "EnhancedImageData" | |
top: "data" | |
top: "label" | |
enhanced_image_data_param { | |
root_folder: "/data/shuhao/images/" | |
source: "/home/shuhao/share/mrdk/train_all_bbox.txt" |
adb shell settings put global captive_portal_http_url http://connect.rom.miui.com/generate_204 | |
adb shell settings put global captive_portal_https_url https://connect.rom.miui.com/generate_204 | |
adb shell settings put global captive_portal_fallback_url http://www.google.cn/generate_204 | |
adb shell settings put global captive_portal_other_fallback_urls http://www.qualcomm.cn/generate_204 |