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]
This file contains 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
#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){ |
Name: Animesh Kashyap (annimesh2809)
Proposal: Implementing multiple image segmentation algorithms in pure Julia (link)
Mentor: Tim Holy (timholy)
This file contains 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
# 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 |