Skip to content

Instantly share code, notes, and snippets.

View merrybingo's full-sized avatar
๐Ÿ‘‘
No Free Lunch

HyeJin Kim merrybingo

๐Ÿ‘‘
No Free Lunch
  • Republic of Korea
View GitHub Profile
@merrybingo
merrybingo / ctypes_structs_example.py
Last active June 28, 2019 03:13 — forked from JonathonReinhart/ctypes_structs_example.py
Using Python ctypes to manipulate binary data
#!/usr/bin/env python3
from __future__ import print_function
from binascii import hexlify
from ctypes import *
class StructHelper(object):
def __get_value_str(self, name, fmt='{}'):
val = getattr(self, name)
@merrybingo
merrybingo / object_detection.ipynb
Created October 4, 2019 05:35
๋Œ€ํ•™์› ์ˆ˜์—…์šฉ ๊ฐ์ฒดํƒ์ง€ ์‹คํ—˜
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@merrybingo
merrybingo / saveByBand.m
Created November 7, 2019 09:25
tif ํŒŒ์ผ ๋ฐด๋“œ ๋ณ„ ์ €์žฅํ•˜๊ธฐ
% tif ํŒŒ์ผ ๋ฐด๋“œ ๋ณ„ ์ €์žฅํ•˜๊ธฐ
clear; clc;
dir_path = "C:\Temp\";
files = dir(strcat(dir_path, '*.tif'));
for i=1:length(files)
path = strcat(files(i).folder, "\" ,files(i).name);
base_name = split(files(i).name, ".");
@merrybingo
merrybingo / README.md
Created December 31, 2019 02:07 — forked from e9t/README.md
์‹์‹ ๋กœ๋“œ ๋งŒ์  ์‹๋‹จ 20์„ 
  • ๋ฐ์ดํ„ฐ ์ถœ์ฒ˜: http://m.wikitree.co.kr/main/news_view.php?id=217101
  • ๋ฐ์ดํ„ฐ ์ˆ˜์ง‘: ์œ„ ๊ธฐ์‚ฌ์—์„œ crawl.py๋ฅผ ์ด์šฉํ•ด ๋ง›์ง‘ ๋ชฉ๋ก ์ˆ˜์ง‘ ํ›„ ๋„ค์ด๋ฒ„ ์ง€๋„ API๋ฅผ ์ด์šฉํ•ด์„œ ์ขŒํ‘œ ์ •๋ณด ์ˆ˜์ง‘
  • Author: Lucy Park
  • License: Apache v2