complex small world

どうしようもない日々の追想

2019-01-01から1年間の記事一覧

Cause of Overfitting

Cause Too much representation capability Less amount of dataset Solution Decrease representation capability Increase amount of dataset Insert Dropout Add regularization term to cost function

Available Halide Codes

Image resize: オリヅルさんの資料 : bilinear image resize HalideありのサンプルとHalideなしの結果の速度比較ができる MSVC上でのLibrary化を学べる WIndows / MSVC Image Processing Tips FixstarsさんのCode 一通りに画処理のサンプルコードがある Gene…

Camera2format 保存先

/data/user/0/com.android.example.camera2.formats/files

Build Halide on Mac OSX

Precompile version: > git clone https://github.com/halide/Halide.git > cd Halide > curl -L -O http://llvm.org/releases/3.7.0/clang+llvm-3.7.0-x86_64-apple-darwin.tar.xz > tar zxf clang+llvm-3.7.0-x86_64-apple-darwin.tar.xz > export LLVM_CO…

PReLU error on Keras

x = PReLU()(x) This type of description does not work for variable input image size. Please use the below code instead. x = PReLU(shared_axes=[1,2])(x)

eGPU 再設定のためのメモ

Mac book 2012 で eGPU(Akitio)に入ったGTX 980を使うためのメモ。 以前使えていたが、Macが勝手にドライバをアップデートしやがったらしく、再設定に手間取った。 正直、こちらのQiitaの通りにやれば使えるハズ。でも、自分のためにメモ。 qiita.com 最初、…

Preparation of application development using Xiaomi mi9 (SnapDragon855)

Developer Activation About phone —> MIUI version (7 times click) USB debugging: On setting —> additional setting —> Developer options —> USB debugging Install via USB: On setting —> additional setting —> Developer options —> Install via US…

ffmpeg command cheat sheet [Japanese (Mac)]

ターミナルからコマンドを打ち込む 詳細オプション $ ffmpeg -h full 動画ファイルの圧縮codec情報を見る場合 $ ffprobe ファイル名 圧縮する場合 $ ffmpeg -i 入力ファイル名 出力ファイル名 オプションパラメータ -f 圧縮ファイルコンテナ形式 (mp4, mov, …

Rawpy cheat sheet

import library import rawpy load raw file raw = rawpy.imread("sample.raw") check image format print(raw.sizes) check white balance print(np.array(raw.camera_whitebalance)) check color matrix print(raw.color_matrix) raw data, width, height …

ISP Tools

Image processing tool Image Development (RAW to RGB) DCRaw libraw rawpy (python library) RAW Image/Video viewer YUV viewer Image Viewer Irfan view FastStone Image Viewer Video processing tool Video Viewer Media player classic VLC media pla…