This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void fetchContacts() { | |
| ZcsService zcsService = new ZcsService("https://webmail.daiict.ac.in/service/soap", 2, true); | |
| AccountSelector accountSelector = new AccountSelector(); | |
| accountSelector.setBy(AccountBy.OPT5_NAME); | |
| accountSelector.setValue(username); | |
| AuthRequest authRequest = new AuthRequest(); | |
| authRequest.setAccount(accountSelector); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.BufferedWriter; | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.firefox.FirefoxDriver; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lines = tuple(open("Books", "r")) | |
| for line in lines: | |
| print line.split(';')[0] | |
| count = 0 | |
| for item in finalitems: | |
| print '{"ISBN":"' + item[0] + '",'+ '"place":"' + item[2] + '","accesionNumber":"' + item[1] + '"}' | |
| count += 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.util.Log; | |
| import com.orm.SugarRecord; | |
| import com.orm.query.Condition; | |
| import com.orm.query.Select; | |
| import com.orm.util.NamingHelper; | |
| /** | |
| * Created by rish on 6/5/16. | |
| * This is an example of how to use SugarORM (https://github.com/satyan/sugar) - a brilliant lightweight sql handler for Android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.Point; | |
| public class EightQueens { | |
| /** | |
| * @param args | |
| */ | |
| public static void main(String[] args) { | |
| boolean board[][] = new boolean[8][8]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class StackWithMinMax extends Stack<Integer> { | |
| private Stack<Integer> minStack; | |
| private Stack<Integer> maxStack; | |
| public StackWithMinMax () { | |
| minStack = new Stack<Integer>(); | |
| maxStack = new Stack<Integer>(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package rish.crearo.imagestabv2; | |
| /** | |
| * Original author unknown. | |
| * | |
| * Modified by rish on 10/7/17. | |
| * bhardwaj.rish@gmail.com | |
| */ | |
| import android.content.Context; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| A small script to play videos of the same dimensions side by side. | |
| I needed this while showing two videos side by side; one stabilized and one not stabilized during my | |
| works on video stabilization. | |
| ''' | |
| import cv2, sys | |
| import numpy as np | |
| if len(sys.argv) < 3: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.rish.imagestab.utils; | |
| import java.io.BufferedWriter; | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| import java.io.IOException; | |
| import java.util.HashMap; | |
| /** | |
| * Created by rish on 14/6/17. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Performs software stabilization using optical flow + linear smoothing. | |
| Vision algos used : | |
| - KLT for flow tracking | |
| - Harris corner detection to detect points to be tracked in each frame | |
| This is the Python translation I wrote of the original .cpp code written by nghiaho.com/?p=2093 | |
| ''' | |
| import cv2 | |
| import numpy as np |
OlderNewer