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 / 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 / facedetection.ipynb
Last active June 11, 2016 09:50
Face Detection using OpenCV
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/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.
@bikz05
bikz05 / Connected Components using RGB values.ipynb
Created January 19, 2015 08:15
Connected Components using RGB values
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bikz05
bikz05 / gist:27c50374616678ba17df
Created December 20, 2014 11:24
Image Gradients
Dervative is rate of change.
`Hello`
# Question 1
# http://progexercise.dev.indeed.net/progcontest/problems/1
input = "RUNNINGWITHSCISSORS"
list = list(input)
dic = {}
count = len(list);