原创 python/opencv 讀取,寫入和顯示視頻

import cv2 import numpy as np # Create a VideoCapture object and read from input file # If the input is the camera,

原创 ubuntu 18.04 caffe build

環境 * ubuntu 18.04 * cuda 9.1 * cudnn 7.1 * g++-4.8 caffe 下載源碼 git clone https://github.com/BVLC/caffe.git 安裝依賴

原创 Three.js 問題總結

three.js中如何旋轉物體position座標系 https://ask.csdn.net/questions/247467

原创 MUXless 安裝nvidia驅動+cuda

注意點 Secure Boot : Disabled F2 進入BIOS 在Security 裏面選擇Secure Boot Configuration 將Secure Boot Option 設爲 Disabled (如果只是這樣改

原创 c++版的mxnet

編譯mxnet並使用C++訓練模型 Mxnet make : /usr/bin/ld -lippicv not found Solution: $ locate ippicv $ sudo ln -s /usr/local/share/

原创 關於mxnet的cpp的整理

MXNet/Gluon 中網絡和參數的存取方式 mxnet-ssd get a image // resize image image.resize(height_, width_); int size = image.c

原创 A guide to convolution arithmetic for deep learning

目標 介紹卷積和反捲積的關係 明白 input shape, kernel shape, zero padding, strides , out shape 在卷積,池化,反捲積的關係 1 介紹 1.1 離散卷積 神經網絡:放射變換

原创 關於mxnet的for_training 和is_train

forward(is_train): is_train was not related to memory saving, but will only affect some runtime behavior of operators

原创 VTK ImportError cannot open shared object file

Error ImportError: libvtkxxxxx.so.1: cannot open shared object file: No such file or directory Method #after sudo make

原创 PCL的安裝

PCL的安裝

原创 A guide to receptive field arithmetic for Convolution Neural Networks

目標 感受野的大小 感受野的中心 感受野 定義 卷積神經網絡每一層輸出的特徵圖上的像素點在原始圖像上映射的區域大小 可視化——有兩種方式將感受野形象地表示出來, 第一種:如左圖所示,每一層的輸出爲真實輸出的大小,在原始圖像中灰色部

原创 圖片的剪裁和疊加

 裁剪 from PIL import Image im = Image.open('1.jpg') # 左上角和右下角的點 region = im.crop((rect[0], rect[1], rect[2], rect[3])) r

原创 docker中使用nginx容器代理其他容器

docker中使用nginx容器代理其他容器 server { #listen 443; listen 80; server_name blog.kelvv.com #ssl on; access_l

原创 ubuntu16.04安裝MATLAB

ubuntu16.04安裝MATLAB

原创 c++ circular dependency

A類的成員函數中調用B,B類中成員變量有A 1.hpp #include <iostream> namespace test { class A { public: struct C