An algorithm is a sequence of well-defined steps that defines an abstract solution to a problem. Use this tag when your issue is related to algorithm design.
6
votes
0answers
103 views
Rotate image and crop out black borders
My application: I am trying to rotate an image (using OpenCV and Python)
At the moment I have developed the below code which rotates an input image, padding it with black borders, giving me A. What ...
5
votes
0answers
246 views
GLSL-ES Random grainy noise with FP16 limit
I am trying to write a compact and simple noise function with a strictly FP16 limit.
This is with what I came out so far, but I think somewhere on the operation the number gets too small for fract or ...
5
votes
0answers
399 views
Part 2 Resilient backpropagation neural network
This is a follow-on question to this post. For a given neuron, I'm unclear as to how to take a partial derivative of its error and the partial derivative of it's weight.
Working from this web page, ...
4
votes
0answers
118 views
Matching CLOSEST file in given ASCII Text Files
PROBLEM:
I have around 20 ASCII text files, each having a size less than 10^9 Bytes.Another ASCII text file (say FOO) is given. Program is to strategically match the contents of FOO with the given 20 ...
4
votes
0answers
374 views
Distributed local clustering coefficient algorithm (MapReduce/Hadoop)
I have implemented MapReduce paradigm based local clustering coefficient algorithm. However I have run into serious troubles for bigger datasets or specific datasets (high average degree of a node). I ...
3
votes
0answers
36 views
Determine main article image - HTML Agility Pack
I would like to use HTML Agility Pack to determine the main article body and then extract the main article image from it.
I have noticed that most of the site webmasters have their main content ...
3
votes
0answers
41 views
Karatsuba Multiplication for unequal size, non-power-of-2 operands
What's the most efficient way to implement Karatsuba large number multiplication with input operands of unequal size and whose size is not a power of 2 and perhaps not even an even number? Padding the ...
3
votes
0answers
86 views
LocalBridge of degree k in Graph
What would be the best algorithm to find localbridge(k) in Graph? A local bridge of degree k is an edge whose removal would enlarge the shortest distance between its two end-points to at least k.
...
3
votes
0answers
504 views
bevel or sunken effect algorithm on c#
I am looking for ways to generate the bevel/emboss effect for a set of random closed beizier shapes. I came across the following post which seems to match my requirement.
...
3
votes
0answers
600 views
Spring Graph Algorithm w Node size
I need to do some graph layout drawing and have been looking at using something like the Spring layout algorithm as implemented here and discussed here
However my nodes all have a width and height ...
2
votes
0answers
46 views
Matching algorithms in R (bipartite matching, Hungarian algorithm)
I wonder how to set up some example some fundamental matching procedures in R. There are many examples in various programming languages, but I have not yet found a good example for R.
Let’s say I ...
2
votes
0answers
65 views
Algorithm for finding visually similar photos from a database?
TinEye, Google and others offer a "reverse image search" -- you can upload a photo and within seconds it will find similar photos.
Is there an open-source version of these algorithms?
I know about ...
2
votes
0answers
48 views
Generating suffix tree of string S[2..m] from suffix tree of string S[1..m]
Is there a fast (O(1) time complexity) way of generating a suffix tree of string S[2..m] from suffix tree of string S[1..m]?
I am familiar with Ukkonen's, so I know how to make fast suffix tree of ...
2
votes
0answers
97 views
Shortest weight constrained path to Partition reduction
I am trying to prove NP-completness of a shortest weight constrained path problem. I have read multiple papers, but for love of god, cannot figure out how to show a reduction of this to partition ...
2
votes
0answers
96 views
coloring a graph with minimum colors
I want to color a graph such that:
for any vertex v1 and v2, if there are n paths between them.
p1 = (v1, p11,p12,v2)
p2 = (v1, p21,p22,v2)
....
pn = (v1, pn1,pn2,v2)
(p11,p12 are vertexes of ...
2
votes
0answers
162 views
Algorithm to convert regular expression to linear grammar
What is the Standard Algorithm to convert any given Regular Expression(RE) to a Left (or Right) Linear Grammar?
I know I can do this like this (to write Linear Grammar from RE):
RegEx -> NFA ...
2
votes
0answers
165 views
How to speed up a CYK Algorithm in C++?
I would like to implement CYK algorithm in C/C++, but available on various websites pseudo-code doesn't answer how to implement it efficiently. I wrote a version that uses some stl structures like map ...
2
votes
0answers
111 views
jsPlumb incrase speed execution
I am using jsPlumb library to draw (connect) some divs. The number of divs is dynamic and can go up to 2000 divs. I am using the following recursive approach to draw the line:
connectGraphNodes: ...
2
votes
0answers
190 views
Finding a set of repeated, non-overlapping substrings of two input strings using suffix arrays
Input: two strings A and B.
Output: a set of repeated, non overlapping substrings
I have to find all the repeated strings, each of which has to occur in both(!) strings at least once. So for ...
2
votes
0answers
49 views
algorithm for reserving access to limited licenses
We have a situation where there are less licenses(for GUI testing tool silktest) and more users.
I am trying to build a system where the access to the licenses will be through reservations.
To ...
2
votes
0answers
117 views
Sampling without replacement with unequal probabilites — linear run time possible?
In search for a faster weighted sampling without replacement, the following question came up:
Is there an algorithm that implements random sampling without replacement with unequal selection ...
2
votes
0answers
85 views
Find start and end position of “cover-all” path then connect them
I have the shape in my 2dArray like this (for example):
It is known that the points A and B (I do not know where) and a path that covers the entire shape (must walk through each cell) must exist. ...
2
votes
0answers
366 views
Dynamic Time Warping - Comparing Values
Apologies if this is in the wrong forum.
Ok, so I'm trying to compare two different speech signals and I have come into a problem. Here goes:
I have split the signal into blocks, and I have computed ...
2
votes
0answers
134 views
Adding Alpha-Beta prunning to minMax in Objective-C
Hi there I have problems adding alpha beta prunning to my minMax algorithm for the connect 4 game can you help me ? here is my code for the minMax procedure, it looks to me that there is just a ...
2
votes
0answers
229 views
What's the most storage efficient Octree structure for reconstruction?
I've coded a full octree implementation without too much optimization for 3D reconstruction, however, the tree structure contains too many pointers, and cannot support more than 256^3 voxels.
...
2
votes
0answers
423 views
Compute next hop routing table from adjacency matrix using Dijkstra's algorithm - alg. not stopping
I am trying to determine a next hop routing table using an adjacency matrix. Each node knows the full adjacency matrix for that topology. I have found previous posts explaining how to do it, however, ...
2
votes
0answers
60 views
Solr Document Tagging
I am working with Solr and my need is to tag documents that are indexed based on the content that resides within the documents. I am thinking of using KEA for extracting key phrases. So i wanted to ...
2
votes
0answers
208 views
Graph Theory Depth first Search
While implementing DF traversal using stacks , Do we need to push the element into the stack if it's already inside the stack but not visited?
2
votes
0answers
193 views
Drug Delivery Economics : Max Path of Length k?
I am a drug dealer with a map of delivery routes that are each worth a certain amount. But I can't cover the whole area, I just have to fight out my little bit of turf. However, I can choose which bit ...
2
votes
0answers
134 views
Having trouble writing the right algorithm
I'm trying to write a custom function to loop through an array list and compare the four sides of a quadrilaterals. Each side only needs to be compared 1 to 1 but I can't seem to be able to to figure ...
2
votes
0answers
171 views
Recursive Relation Help for dynamic programming 2d Plane algorithm
So I've been working on an algorithm. The task I'm trying to accomplish is: consider a 2D plane there are targets that are randomly distributed between a y upper bound and lower bound. This set is T. ...
2
votes
0answers
351 views
What is a sensible algorithm to generate the letters in Letterpress iOS game?
I've been playing Letterpress a lot lately.
The aim of the game is pretty much to score as many blue tiles as possible by making words out of the letters on the board. When you play your word, ...
2
votes
0answers
150 views
Running out of memory using Node.js to optimise route pairings with mongodb database
Ive been trying to crack this for days, any help would be GREATLY appreciated. Basically im trying to iterate through this array of destination pairings and see if the overall distance can be ...
2
votes
0answers
512 views
Dijkstra's Algorithm in CUDA
I am having trouble with this piece of CUDA code I have written. This is supposed to be the CUDA implementation of the Dijkstra's algorithm. The code is as follows:
__global__ void ...
2
votes
0answers
263 views
Most time efficient method of finding all simple paths between all nodes in an undirected graph
To expand on the title, I need all simple (non-cyclical) paths between all nodes in a very large undirected graph.
The most obvious optimization I can think of is that once I have calculated all the ...
2
votes
0answers
185 views
Range reduction for trigonometric functions
I'm trying to implement range reduction for trigonometric functions.
I found this paper http://www.computer.org/csdl/proceedings/pcspa/2010/4180/00/4180b048-abs.html which talks about using 64-bit ...
2
votes
0answers
228 views
3d Fenwick tree
I have a three-dimensional fenwick tree data structure.
I need to calculate sum on some segment from (x0, y0, z0) to (x, y, z)
What is the formula for inclusion-exclusion?
For instance, for 2D ...
2
votes
0answers
312 views
Udi Manber and Gene Myers Method
I have a suffix array SA, and an array L that stores the length of LCP (longest common prefix) between two consecutive suffixes, i.e.
L[i]=LCP(SA[i-1],SA[i]) where 1<=i<=|SA|
It's also ...
2
votes
0answers
69 views
Distance Based Metric For Locally Scaled Difference of Distance Between Moving Points
I am trying to form a metric to model the following scenario.
Given various combinations of triples of points (calls those triples abc) in euclidean space, where all points are moving independently ...
2
votes
0answers
393 views
Two way multiway merge sort
This is a question from the book 'Database Systems The complete book, 2nd Edition' - Chapter 15: Two-pass algorithm based on sorting.
"Sometimes, it is possible to save some disk I/O ’s if we leave ...
2
votes
0answers
198 views
Any special comments on this variation of the subset sum prob?
I have an optimisation problem which is a sort of variation of the Subset Sum Problem and I am wondering if this variation is known or if it can be solved easily (polynomially). My problem is:
Given ...
2
votes
0answers
123 views
UIGestures translated to velocity
So I'm looking at some code and basically there are a row of images and you swipe on the row, and the card images move in the row according to the swipe. Like you give it a flick, and then it moves 5 ...
2
votes
0answers
118 views
looking for code that produces a Clustered Affinity Matrix used in database vertical partitioning
Before I spend time writing it myself, does anyone have pointers to implementations (in any language but Python, Java, C, C++ would be preferred) of algorithms that are used in database vertical ...
2
votes
0answers
54 views
Security Cost of Middlebox Traversal
I want to calculate the security cost of middlebox traversal when VM migrate from one physical server to another. Middle boxes can be firewalls or IPS/IDS containing rules checking the VM traversing ...
2
votes
0answers
319 views
displaying a sphere with longitude and latitude grid android
I'm developing a AR app in android what i want it to do is overlay a camera image with a section of a grid. this gird should display longitude and latitude.
so this sphere will have a radius of that ...
2
votes
0answers
285 views
Better C# algorithm to make one dataset equal to another?
Here is our problem:
We have a current dataset that our UI is bound to (20 tables, thousands of rows per table). Normally, we use a custom PubSub implementation to apply incremental changes from ...
2
votes
0answers
130 views
image transition algorithms
I want to apply various transitions like wipe in, wipe out, zoom in, zoom out, split, etc. on images. Can somebody please suggest some algorithms or books that explains how to apply various ...
2
votes
0answers
107 views
Composing data-structures/strings matching a CFG
The JSON syntax is an example of a CFG.
Valid JSON strings are a sequence of tokens constrained to a CFG... or, the tokens can -equivalently- be thought of as a structure of nested values.
Valid ...
2
votes
0answers
693 views
Extending Sugiyama's Layout Algorithm for block with more than one input
I'm messing around with using Sugiyama's directed graph layout algorithm to generate nice plots of verilog circuits. The problem I'm having is that the layout algorithm assumes that each block (or ...
2
votes
0answers
498 views
What are the indicator functions and constraints for complex grid drawing problems?
If you're looking at an array of pixels, in either 0,1,2,3, or even N dimensions, it's easy to tell if a certain pixel falls on a square or rectangular grid line within it by using an indicator ...

