Skip to content

Instantly share code, notes, and snippets.

View annimesh2809's full-sized avatar

Animesh Kashyap annimesh2809

View GitHub Profile
@annimesh2809
annimesh2809 / Foresight.md
Created February 9, 2018 22:16
Trying to answer some questions regarding GSoC

Brief Introduction

Hi, I am Animesh Kashyap, a third year undergraduate student of the department of Computer Science and Engineering, pursuing a BTech degree. I have successfully completed Google Summer Of Code 2017 under the organization The Julia Language and the topic Image Segmentation... [WORKING]

#include <bits/stdc++.h>
using namespace std;
const int MAX_VEL = 100;
typedef pair<double,double> Vector2D;
typedef double (*max_vel)(const vector<Vector2D>& pos, int ind);
double max_vel_naive(const vector<Vector2D>& pos, int ind){

GSoC 2017 Final Report

Basic Info

Name: Animesh Kashyap (annimesh2809)

Proposal: Implementing multiple image segmentation algorithms in pure Julia (link)

Mentor: Tim Holy (timholy)

# This file is a part of Julia. License is MIT: https://julialang.org/license
### Multidimensional iterators
module IteratorsMD
import Base: eltype, length, size, start, done, next, last, in, getindex,
setindex!, IndexStyle, min, max, zero, one, isless, eachindex,
ndims, iteratorsize, convert
importall ..Base.Operators
import Base: simd_outer_range, simd_inner_length, simd_index