Skip to content

Instantly share code, notes, and snippets.

View ikedaosushi's full-sized avatar

Yutaro Ikeda ikedaosushi

View GitHub Profile
@ikedaosushi
ikedaosushi / slack-analytics.ipynb
Created December 21, 2018 10:36
Slackデータを可視化して会社の2018年を振り返る
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ikedaosushi
ikedaosushi / heamy,pystacknet.ipynb
Created December 15, 2018 12:24
Stacking/Blendingをheamyで、Stacknetをpystacknetで高速に実装する
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ikedaosushi
ikedaosushi / rebuild.fmの統計学.ipynb
Last active December 15, 2018 07:26
rebuild.fmの統計学
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ikedaosushi
ikedaosushi / detect_marker.py
Created May 1, 2018 01:04 — forked from ksasao/detect_marker.py
ZOZOSUITのマーカーのIDを読み取るコードです。公開されている画像を元に独自に解析しているので、公式ではこのように処理しているかどうかは不明です。
import numpy as np
import random
import math
import cv2
from PIL import Image
def detect_markers(im):
markers = []
# 輪郭線抽出のための二値化
im_gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)