Skip to content

Instantly share code, notes, and snippets.

View bikz05's full-sized avatar

bikram bikz05

  • Amazon
  • Sunnyvale, United States
View GitHub Profile
@bikz05
bikz05 / .tmux.conf
Created August 12, 2017 20:38
tmux configuration file
# Enable mouse support
set -g mouse on
# Enable Ctrl + left/right arrow.
set-window-option -g xterm-keys on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
@bikz05
bikz05 / gist:84c6c2f642108425abdda6a1a3ba3252
Created December 7, 2016 03:11
Notes for Deep Learning Project
http://nbviewer.jupyter.org/github/BVLC/caffe/blob/master/examples/00-classification.ipynb
@bikz05
bikz05 / opencv-3-installation
Last active March 19, 2020 08:17
OpenCV 3 Installation
sudo apt-get update
sudo apt-get upgrade
# Added by me
sudo apt-get install freeglut3 freeglut3-dev libtbb-dev libqt4-dev
# Copied from pyimagesearch.com
sudo apt-get install build-essential cmake git pkg-config
sudo apt-get install libjpeg8-dev libtiff4-dev libjasper-dev libpng12-dev
sudo apt-get install libgtk2.0-dev
sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
#!/usr/bin/env python
# Import the modules
import cv2
import sys
import numpy as np
# Set the global parameters
'''
@bikz05
bikz05 / ros_assignment.markdown
Last active October 7, 2015 01:18
ROS Assignment

ROS Commands

roscore
# Export this to set the variables to capture form webcam
export GSCAM_CONFIG="v4l2src device=/dev/video0 ! video/x-raw-rgb,framerate=30/1 ! ffmpegcolorspace"
# run gscam to get input from webcam and publish to /camera/image_raw topic
rosrun gscam gscam
# Open a new node to display the webcam output
rosrun image_view image_view image:=/camera/image_raw
@bikz05
bikz05 / caffe.md
Created July 29, 2015 22:53
Caffe Notes
@bikz05
bikz05 / Digit Recognition using nolearn.ipynb
Created April 9, 2015 21:39
Digit Recognition using nolearn.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bikz05
bikz05 / CAVEAT - HSV Thresholding.ipynb
Last active August 29, 2015 14:14
CAVEAT – Thresholding with HSV Values.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.