Skip to content

Instantly share code, notes, and snippets.

View gchoi's full-sized avatar
💭
I may be slow to respond.

Geol Choi, Ph.D gchoi

💭
I may be slow to respond.
View GitHub Profile
@gchoi
gchoi / test_surf.py
Created November 13, 2017 11:26 — forked from moshekaplan/test_surf.py
Demo for Python OpenCV SURF
#!/usr/bin/env python
'''
Uses SURF to match two images.
Based on the sample code from opencv:
samples/python2/find_obj.py
USAGE
find_obj.py <image1> <image2>
@gchoi
gchoi / test_surf.py
Created November 13, 2017 11:26 — forked from moshekaplan/test_surf.py
Demo for Python OpenCV SURF
#!/usr/bin/env python
'''
Uses SURF to match two images.
Based on the sample code from opencv:
samples/python2/find_obj.py
USAGE
find_obj.py <image1> <image2>
@gchoi
gchoi / useHexo.md
Created November 3, 2017 15:07 — forked from btfak/useHexo.md
How to use Hexo and deploy to GitHub Pages
@gchoi
gchoi / TensorFlow 시작하기.md
Created January 4, 2017 01:03 — forked from haje01/TensorFlow 시작하기.md
TensorFlow 시작하기

텐서플로우 시작하기

글쓴이: 김정주(haje01@gmail.com)

이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.


소개

텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.

@gchoi
gchoi / index.html
Created January 3, 2015 14:43
Scatterplot
<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<script src='//ramnathv.github.io/rCharts/libraries/widgets/polycharts/js/polychart2.standalone.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
@gchoi
gchoi / designer.html
Created August 21, 2014 14:08
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
@gchoi
gchoi / designer.html
Created August 21, 2014 04:26
designer
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<polymer-element name="my-element">
<template>
<style>
:host {

rmongodb Tutorial

This is a quick document aimed at highlighting the basics of what you might want to do using MongoDB and R. I am coming at this, almost completely, from a SQL mindset.

Connect

Below we will load the package and connect to Mongo. The console will print TRUE if we are good to go.