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
(tf_test01) ~/Desktop/win_share/CNN_NumberDetector/02_Tensorflow_Python$ conda list | |
# packages in environment at /home/tak/anaconda3/envs/tf_test01: | |
# | |
# Name Version Build Channel | |
_tflow_select 2.3.0 mkl | |
absl-py 0.7.0 py36_0 | |
astor 0.7.1 py36_0 | |
blas 1.0 mkl | |
bzip2 1.0.6 h14c3975_5 | |
c-ares 1.15.0 h7b6447c_1 |
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
LIBRARY tensorflow | |
EXPORTS | |
??0?$MaybeStackArray@D$0CI@@icu_62@@AEAA@AEBV01@@Z | |
??0?$MaybeStackArray@D$0CI@@icu_62@@QEAA@$$QEAV01@@Z | |
??0?$MaybeStackArray@D$0CI@@icu_62@@QEAA@H@Z | |
??0?$MaybeStackArray@D$0CI@@icu_62@@QEAA@XZ | |
??0Appendable@icu_62@@QEAA@AEBV01@@Z | |
??0Appendable@icu_62@@QEAA@XZ | |
??0BreakIterator@icu_62@@IEAA@AEBV01@@Z | |
??0BreakIterator@icu_62@@IEAA@AEBVLocale@1@0@Z |
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
#include <stdio.h> | |
int main() | |
{ | |
int a; | |
int ret; | |
extern int func1(int *a); | |
ret = func1(&a); | |
printf("ret = %d, a = %d\n", ret, a); | |
} |
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
#ifndef SRC_COMMON_H_ | |
#define SRC_COMMON_H_ | |
#include <stdint.h> | |
/* common return code */ | |
#define RET_OK 0x00000000 | |
#define RET_NO_DATA 0x00000001 | |
#define RET_TIMEOUT 0x00000002 | |
#define RET_ERR 0x80000001 |
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
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
import time | |
import pyautogui | |
import random | |
### | |
# Main | |
### |
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
scrapy startproject test_scrapy | |
cd test_scrapy |
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
cat /dev/fb0 > aaa.raw |
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
{ | |
"host": "192.168.1.88", | |
"port": 22, | |
"username": "pi", | |
"password": "rasp", | |
"protocol": "sftp", | |
"agent": null, | |
"privateKeyPath": null, | |
"passphrase": null, | |
"passive": false, |
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
rem @echo off | |
setlocal ENABLEDELAYEDEXPANSION | |
set FFMPEG="C:\\asd\\tool\\ffmpeg-20170827-ef0c6d9-win64-static\\bin\\ffmpeg" | |
set /a HEIGHT=1080 | |
cd /d %~dp1 | |
for %%f in (%1\*.mp4) do ( |
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
rem @echo off | |
setlocal ENABLEDELAYEDEXPANSION | |
set FFMPEG="C:\\asd\\tool\\ffmpeg-20170827-ef0c6d9-win64-static\\bin\\ffmpeg" | |
cd /d %~dp1 | |
for %%f in (%1\*.MTS) do ( | |
%FFMPEG% -i %%f -vcodec copy -acodec copy %%f.mp4 | |
) |