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 / README.md
Created December 31, 2019 02:07 — forked from e9t/README.md
식신로드 만점 식단 20선
@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 / 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 / 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)