Skip to content

Instantly share code, notes, and snippets.

View toshikaz55's full-sized avatar

Toshikazu Ohtsuki toshikaz55

View GitHub Profile
@toshikaz55
toshikaz55 / facedetect.py
Created March 28, 2019 16:09
Deeplearnig前処理のため顔領域抽出、切り抜き、バリエーション作成
import os
import glob
import argparse
import cv2
from PIL import Image
from PIL import ImageEnhance
import numpy as np
IMAGE_HEIGHT = 800
CASCADE_PATH = "./haarcascades/haarcascade_frontalface_alt.xml"
@toshikaz55
toshikaz55 / usabilityMemo.txt
Created August 10, 2016 01:25
ユーザビリティメモ
ユーザビリティメモ
===============================
------------------------
[1]ユーザビリティ設計
------------------------
ユーザビリティ、UI設計に関するポイント
@toshikaz55
toshikaz55 / tmux.conf
Last active December 9, 2016 01:44
tmux.conf
set-option -g mouse on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @tpm_plugins ' \
tmux-plugins/tpm \
@toshikaz55
toshikaz55 / init.el
Last active September 1, 2016 08:00
emacs init.el
;; 行番号の表示
(global-linum-mode t)
(setq linum-format "%4d| ")
;; GDB
;;; GDB 関連
;;; 有用なバッファを開くモード
(setq gdb-many-windows t)
;;; 変数の上にマウスカーソルを置くと値を表示
alias ls="ls -F --color"
@toshikaz55
toshikaz55 / unityJoystickFire
Created April 9, 2014 02:42
Unityで2つ目のJoystick(Fire)を使って弾を発射するスクリプト
#pragma strict
var bulletPrefab : GameObject;
var initialVelocity : float = 40.0;
var canonY = 1.5;
var canonZ = 0.3;
private var direction : Vector3;
private var fireObject : GameObject;
@toshikaz55
toshikaz55 / iOSImageCache
Created April 9, 2014 01:33
iOSでキャッシュ機能ありなしで画像表示
// キャッシュ機能付き画像表示
self.myImageView.image = [UIImage imageNamed:@"sample.jpg"];
// キャッシュ機能なし(メモリ不足対策)画像表示
NSString *imgpath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"jpg"];
self.myImageView.image = [UIImage imageWithContentsOfFile:imgpath];
@toshikaz55
toshikaz55 / UIImageViewWeb
Created April 9, 2014 01:08
iOSでWeb上の画像をUIIまげに表示する
// URL文字列の生成
NSURL *myURL = [NSURL URLWithString:@"http://www.ymori.com/itest/sample.jpg"];
// 素のデータを作成
NSData *myData = [NSData dataWithContentsOfURL:myURL];
// データを画像に変換
UIImage *myImage = [UIImage imageWithData:myData];
self.myImageView.image = myImage;
@toshikaz55
toshikaz55 / ios-label-format-string
Created April 7, 2014 07:33
iOSのLabelに数字入り文字列、フォーマット文字列を表示する
self.pinchLog.text = [[NSString alloc] initWithFormat:@"縮めた = %.4f", pg.scale];
@toshikaz55
toshikaz55 / unity_bulletPrefab
Created March 24, 2014 06:59
Unityで弾を発射するスクリプトの弾に付けるスクリプト javascript版
#pragma strict
function Start () {
}
function Update () {
}