摘要:
1.Sorry if I might sound arrogant or offensive. 2.Any further question? 3.How dare you! 4.Try it if you dare! 5.I beg your pardon. 6.The proof of the 阅读全文
摘要:
defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder //显示隐藏文件 defaults write com.apple.finder AppleShowAllFiles No && killall Finde 阅读全文
摘要:
2017: 2016: CVPR: #CVPR16#录取率:643/2145=29.9% (去年:602/2123=28.4%) 1.含作者1836人,最高11篇:Ming-Hsuan Yang;9篇:Xiaogang Wang;8篇:Bernt Schiele等三人;7篇:Wangmeng Zuo 阅读全文
摘要:
/********** huangsy13@gmail.com FileStruct.h **********/ #ifndef FILESTRUE #define FILESTRUE #include<unistd.h> #include<stdio.h> #include<string.h> # 阅读全文
摘要:
http://www.cnblogs.com/huangshiyu13/p/6647375.html http://blog.csdn.net/xiaojidan2011/article/details/39205309 g++ hog.cpp $(pkg-config --libs opencv 阅读全文
摘要:
关闭会话: tmux kill-session -t sessionName tmux所有窗口执行相同命令:ctrl+B输入冒号再输入setw synchronize-panes 多服务器同步软件:https://github.com/peikk0/tmux-cssh 1.配置文件的使用 在~/.t 阅读全文
摘要:
import numpy as np list = range(3) # 0 1 2 np.random.shuffle(list)#2 1 3,打乱了list 产生一个随机整数: 阅读全文
摘要:
1.C#自带随机数函数 using System; System.Random ran = new System.Random();int n = ran.Next(100, 1000);//产生100到999之间的随机整数 Debug.Log (n); 2.Unity自带随机数函数 using U 阅读全文
摘要:
using System.Collections; 新建: ArrayList list = new ArrayList(); 添加元素: int a = 1; list.Add(a); 遍历: foreach(int a in list){ Debug.Log(a); } 统计长度: Debug. 阅读全文
摘要:
1.下载Opencv for unity. 2.把OpenCVForUnity下的StreamingAssets拖到Assets下。 3.点击Tools->opencv for unity->set plugin import settings. 4. using UnityEngine; usin 阅读全文
摘要:
GAN(Generative Adversarial Nets),产生式对抗网络 存在问题: 1.无法表示数据分布 2.速度慢 3.resolution太小,大了无语义信息 4.无reference 5.intend to generate same image 6.梯度消失 论文摘要: 1、Goo 阅读全文
摘要:
import numpy as np 1.创建 a = np.array([[0,1],[0,1]]) 2.合并 a =np.array([[1,2],[4,5]]) b =np.array([[9,8],[6,5]]) np.concatenate((a,b)) array([[1, 2,], [ 阅读全文
摘要:
1.Introduction 2.Convolution 3.Deconvolution 4.Summary 阅读全文
摘要:
document:http://effbot.org/imagingbook/pil-index.htm http://pillow.readthedocs.io/en/3.1.x/index.html from PIL import Image 1.打开图片 img = Image.open(fi 阅读全文
摘要:
int(x [,base]) 将x转换为一个整数 long(x [,base] ) 将x转换为一个长整数 float(x) 将x转换到一个浮点数 complex(real [,imag]) 创建一个复数 str(x) 将对象 x 转换为字符串 repr(x) 将对象 x 转换为表达式字符串 eval 阅读全文
摘要:
1.最近比较喜欢的用法: from concurrent.futures import ProcessPoolExecutor, as_completed ex = ProcessPoolExecutor(max_workers=50) tasks = [ex.submit(process_func 阅读全文
摘要:
Python之异常 阅读全文
摘要:
#国内可以使用:sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzs 阅读全文
摘要:
需添加: import matplotlib as mpl mpl.use('Agg') 而且必须添加在import matplotlib.pyplot之前,否则无效 阅读全文
摘要:
1.查看当前文件大小du -sh ./ du [-abcDhHklmsSx] [-L <符号连接>][-X <文件>][--block-size][--exclude=<目录或文件>] [--max-depth=<目录层数>][--help][--version][目录或文件] 常用参数: -a或- 阅读全文
摘要:
1.ssh-keygen 2.cat ~/.ssh/id_rsa.pub 3.git config user.email "huangsy1314@163.com" 4.git config user.name huangsy13 阅读全文
摘要:
apt-get source package cd package ./configure --prefix=$HOME make make install 阅读全文
摘要:
添加到~/.zshrc里面 阅读全文
摘要:
1.fellow the instruction of https://www.tensorflow.org/install/install_linux#installing_with_anaconda 2.anaconda安装,修改~/.bash_profile为 export PATH=~/an 阅读全文
摘要:
Github:https://github.com/huangshiyu13/PythonFileLib 1.获得文件夹下所有文件名 for file in os.listdir(imageDir): file_path = os.path.join(imageDir, file) if os.pa 阅读全文
摘要:
#include #include #include #include #include #include using namespace std; const int MAXINT = 32767; const int MAXNUM = 10; int dist[MAXNUM]; int prev[MAXNUM]; int len; int v00 = 0; int A[MA... 阅读全文
摘要:
北京大学OJ1182 食物链 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 64641 Accepted: 18999 Description 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C 阅读全文
摘要:
第一种,试除法 第二种,先求质数,在试除质数 #include <iostream>#include <vector>#include <cstring>#include <cstdio>#include <algorithm>#include <cmath> using namespace std 阅读全文
摘要:
问题: 拿POJ 2533来说。 Sample Input 71 7 3 5 9 4 8 Sample Output(最长上升/非降子序列的长度) 4 解法一(O(n^2)): 如何把这个问题分解成子问题呢?经过分析,发现 “求以ak(k=1, 2, 3…N)为终点的最长上升子序列的长度”是个好的子 阅读全文
摘要:
main.cpp: #include <iostream>#include <vector>#include <cstring>#include <cstdio>#include <algorithm>#include <cmath> using namespace std; std::vector 阅读全文
摘要:
测例: 30 53 4 6 8 4 1 4 12 4 5 1234 34 54 213 12 3 6456 121 434 12 3 2 1234 234 234 45 1 34 6 2341 34 823 291 2513 29 #include <iostream>#include <vecto 阅读全文
摘要:
1.安装g++ 下载https://sourceforge.net/projects/mingw/files/Installer/mingw-get/mingw-get-0.6.2-beta-20131004-1/mingw-get-0.6.2-mingw32-beta-20131004-1-bin 阅读全文
摘要:
1.插入配对 std::vector<pair<int,int> > w; w.push_back(make_pair<int,int>(f,s) ); cout <<w[i].first << " " << w[i].second <<endl; 2.元素去重 std::vector<int> a 阅读全文
摘要:
一道OJ题:https://leetcode.com/problems/count-of-smaller-numbers-after-self/ 1.暴力 时间复杂度O(n^2) 2.归并排序 O(nlog(n)) 在合并的过程中是将两个相邻并且有序的序列合并成一个有序序列,如以下两个有序序列 Se 阅读全文
摘要:
using UnityEngine; using System.Collections; public class dynaMesh : MonoBehaviour { public SkinnedMeshRenderer meshRenderer; public MeshCollider coll 阅读全文
摘要:
1.字符串分割 S = regexp(str, char, 'split') 例子: S = regexp(fileName, '\.', 'split'); newName = [ S{1} '.txt']; 阅读全文
摘要:
终端里输入:defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE;killall Finder 回复输入:defaults delete com.apple.finder _FXShowPosixPathInTitle; 阅读全文
摘要:
先在input标签中添加一个id='getvalue'document.getElementById("getvalue").value; 阅读全文