4
votes
2answers
51 views

Get interest area of a Histogram (Int Array)

I have an int array full of values (0-255) and I need to extract two indexes. The indexes to be found will represent the Interesting Area I want to focus on. The values of this area are always ...
0
votes
2answers
55 views

Python: How to get distribution of time spent in a location

I have a big data file with location information on some users. The format is shown below: User TimeStamp Lat Long A 2013-03-01 19:55:00 45.4565 65.6783 A ...
2
votes
5answers
201 views

Looking for an algorithm/class for counting IP addresses (histogram)

I need a simple class to count the distribution (histogram) of IP addresses from a network monitoring system. There might be anywhere from 1 to 1010 packets, with anywhere from 1 to 232 addresses (or ...
0
votes
2answers
533 views

Histogram with bins a percentage of values?

I am creating a histogram in python and I want the bin edges to be a percentage of given values (5-10%). What would be the best way to go about this so that I don't leave gaps in the bin boundaries, ...
2
votes
6answers
273 views

Peak Value of Number of Occurences in Array of Integers

In Java, I need an algorithm to find the max. number of occurrences in a collection of integers. For example, if my set is [2,4,3,2,2,1,4,2,2], the algorithm needs to output 5 because 2 is the mostly ...
2
votes
1answer
1k views

Kullback-Leibler divergence as histogram distance function

I would like to use the Jensen-Shannon divergence as a histogram distance function. I'm implementing a simple image similarity search, and the histograms are normalized RGB color distributions. I ...
3
votes
1answer
217 views

How to rotate orientation in “Fast Approximated SIFT”?

The paper "Fast Approximated SIFT" (M Grabner, H Grabner, ACCV 2006) http://www.icg.tu-graz.ac.at/publications/pubobjects/mgrabner06FastApproxSIFT shows an improved method to extract SIFT descriptors ...
0
votes
3answers
838 views

Java code/library to calculate the earth mover's distance

I'm looking for java code (or a library) that calculates the earth mover's distance (EMD) between two histograms. This could be directly or indirectly (e.g. using the Hungarian algorithm). I found ...
3
votes
1answer
413 views

Histogram approximation for streaming data

This question is a slight extension of the one answered here. I am working on re-implementing a version of the histogram approximation found in Section 2.1 of this paper, and I would like to get all ...
7
votes
4answers
679 views

How to keep a dynamical histogram?

is there a known algorithm + data-structure to maintain a dynamical histogram? Imagine I have a stream of data (x_1, w_1) , (x_2, w_2), ... where the x_t are doubles, that represent some measured ...
1
vote
1answer
145 views

What is more effective and accurate algorithm for define value's interval of sample?

Excel,Matplotlib,matlab,R and etc can draw histogram. In many cases we must change original big sample to set of intervals.Wiki said that we have different algorithms for this task,but most popular is ...
3
votes
1answer
719 views

Histogram peak identification and gauss fitting with minimal accumulated hight difference in c++

I already asked a similar question some time ago in the following thread: previous thread. Until now I unfortunately couldn't entirely solve that issue and only worked around. Since it is difficult to ...
5
votes
6answers
2k views

Is there any Algorithm for converting Image histograms into original image?

So we have Histograms... Is there any algorithm to generate original image from them?
3
votes
3answers
2k views

Fitting a gauss curve to a certain histogram peak in c++

I have two questions concerning fitting a gauss curve to histogram peaks. My first question is a very basic one: How can I fit a gauss curve to a entire histogram? Does this only mean that I have to ...
9
votes
6answers
1k views

How do I generate points that match a histogram?

I am working on a simulation system. I will soon have experimental data (histograms) for the real-world distribution of values for several simulation inputs. When the simulation runs, I would ...