-1
votes
0answers
66 views

How to make a histogram of an image? [closed]

I have to make a histogram, which should calculate the greyscale of an image. But I do not really know how to do it. I just do not have a clue how to proceed, so I hope someone could help me. The ...
0
votes
4answers
250 views

how do I generate histogram output from an array in Java?

so I have a method that I call to my main which takes an array of 10 numbers and creates a histogram output in a nested for loop. I can't figure out how to get the correct number of asterisks next to ...
0
votes
0answers
133 views

Comparing Histogram Value?

I am comparing 2 histograms and I am getting these values for the following comparison methods: correlation:0.256320 Chi:4121.240735 Intersect:287.000000 BHATTACHARYYA:0.786665 I feel like corr and ...
1
vote
0answers
157 views

Create a histogram of that plots the frequency of 256 grayscale intensities JAVA

I am having trouble creating a java class that takes the name of a picture file as a command-line argument, converts the picture to grayscale, and uses StdDraw to plot a histogram of the frequency of ...
2
votes
2answers
200 views

how to make histogram of performance numbers

I am trying to measure the performance of Database Insert. I have captured all those performance numbers in a ConcurrentHashMap. I am trying to make a Histogram of those numbers. In that concurrent ...
1
vote
1answer
114 views

How to get histogram data in measuring the performance

I am trying to measure the performance of our service by putting the data in a HashMap like- X number of calls came back in Y ms. Below is my code which is very simple. It will set the timer before ...
-3
votes
2answers
363 views

I want to draw a histogram in java but i didn't know how? [closed]

I want to draw a simple histogram in java for a simple statistical.. some thing like this http://www.itjobswatch.co.uk/charts/salary-histogram.aspx?s=java+software+engineer&l=uk But i didn't ...
0
votes
1answer
2k views

how to create a histogram in java [duplicate]

Possible Duplicate: how to convert numbers into symbols in java? for example instead of 2 to **, or 3 to *** etc. How can I convert numbers into a histogram ? The histogram should display ...
-3
votes
2answers
334 views

How to Draw a simple GUI Histogram

I need to draw a simple histogram for a project I'm working on that needs to look this... I know there is got to be some simple for loop to run on my H[] array which consists of how many pixels ...
0
votes
1answer
534 views

Histogram Equalization Problems

I'm working on a project in which I'm trying to use histogram equalization to do something like going from this image http://zerocool.is-a-geek.net/wp-content/uploads/2011/12/input-300x200.jpg ...
0
votes
1answer
760 views

Drawing a graphical histogram

I am working on a project and I would like to display a single line histogram that looks like a bar graph except each line in the bar graph represents a pixel and its greyscale value. I have a array ...
0
votes
1answer
151 views

Java Histogram from three one dimensional arrays

I have three one dimensional arrays with RGB values of an image. int[] rhistogram = new int[256]; int[] ghistogram = new int[256]; int[] bhistogram = new int[256]; I need to plot them ...
0
votes
2answers
498 views

Java Color Histogram all Colors not RGB separate

I would like to extract a color histogram out of a BufferedImage (Java). I don't want to extract a separate histogram for red, green and blue, but I would like to have one histogram including all ...
5
votes
6answers
3k views

count specific characters in a string (Java)

I have a homework assignment to count specific chars in string. For example: string = "America" The output should be = a appear 2 times, m appear 1 time, e appear 1 time, r appear 1 time, i appear 1 ...
2
votes
3answers
1k views

how to generate bins for histogram using apache math 3.0 in java?

I have been looking for away to generate bins for specific dataset (by specifying lower band, upper band and number of bins required) using apache common math 3.0. I have looked at Frequency ...
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 ...
1
vote
2answers
318 views

JFreeChart Histogram with constant number of bins while zooming

I'd like to make a JFreeChart Histogram that maintains a constant number of bins while zooming in and out. For example, maybe zoomed way out you can see 12 years, and there would be 1 bin for each ...
1
vote
0answers
591 views

How to make Histogram Normalize and Equalize in java using JAI library?

I m making App in java using Swing component and JAI library. I make histogram of black and white or gray scale image.Is this method of making histogram correct? iif it is correct then how can i do ...
2
votes
1answer
1k views

Get pixel value of each pixel of a gray-scale or black-white image?

can any one suggest me the method to get actual pixel value of each pixel of a gray scale image? i used this code to get pixel. But it just gives me red value of an pixel? I don't know that ...
0
votes
1answer
694 views

how to make correct histogram using existing pixel of image?

i make App in netbeans platform using java swing. i create histogram of perticular image. but it not exact like as histogram of that image in ImageJ software. so,how can i get correct histogram or ...
1
vote
1answer
1k views

how to plot histogram using RGB pixel value?

i m make App in netbeans platform. i want to draw hisrogram. i have Red, Green ,and Blue color's pixel of image. so, please any one suugest to me that how can i plot histogram using this pixels value? ...
1
vote
2answers
377 views

Histogram using Chart2D

I want to draw coefficient histogram of JPEG. I'm searching on Google for hours to know how to use Chart2D library, but there is no tutorial with examples. The array which I want to draw is hist[]. I ...
1
vote
3answers
958 views

paintComponent method doesn't display anything on JLabel?

I am trying to show a histogram for a image in jlabel, but its not working. //hist : array containing histogram values //wid: width of image //ht: height of image mylabel.add(new ...
0
votes
1answer
1k views

drawing histogram

I want to draw a JPEG coefficient histogram //coeff[] is the coefficients array int hist[]=new int[25]; for(int i=0;i<coeff.length;i++) hist[coeff[i]]++; now I want To draw hist array like bar ...
1
vote
1answer
192 views

make a lightness histogram with luminance, Lab and sRGB space in Java

I have to create a lightness histogram of an image. I have already maked a RGB Histogram On Internet i found these values: Luminance (standard, objective): (0.2126*R) + (0.7152*G) + (0.0722*B) ...
1
vote
1answer
623 views

Calculating histogram equalization after converting to HSB values

I am trying to equalize a color image. I was told to convert it into HSB and then perform equalization on brightness channel before converting it back into RGB. I have so far calculated the ...
0
votes
1answer
354 views

Getting RGB value out of negative int value

i had to convert from rgb to hsb so as to perform histogram equalization on an image. I have converted it back into rgb and i am getting a negative value like -158435. Can anyone please help me ...
1
vote
0answers
185 views

jmap -histo:live output is empty

Sometimes when I execute a command: "$JAVA_HOME/bin/jmap -histo:live " + pid + " > " + fileName I get an empty(blank) file. Why this may happen? P.S. This is using in autotest (test on memory ...
1
vote
1answer
2k views

Basic histogram in JFreeChart

I need to create a simple histogram using JFreeChart. There should be 3 groups with numeric values assigned to each of these groups. The problem is that DefaultCategoryDataset requires specifying ...
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 ...
0
votes
2answers
598 views

Histogram computation in java

I try to create a program which computes image histogram. I ve got the above code but i cant figure out why it doesnt work. public void hist(List<Integer> r, List g, List b){ int ...
1
vote
1answer
497 views

Color Histogram based Image Search

I need to compare images on the basis of color histogram in java. I have Histogram of images which I did using JAI of java. But I don't know how can i compare them using histogram.
6
votes
2answers
2k views

Faster way to extract histogram from an image

Im looking for a faster way to extract histogram data from an image. Now Im using this piece of code that needs about 1200ms for a 6mpx JPEG image. ImageReader imageReader = ...
-4
votes
1answer
864 views

I am writing a program to create a histogram given a range of values and out put them [closed]

This is what it is supposed to look like, the inputs are 100 and 10 How many numbers? 100 How many intervals? 10 Histogram -------------------------------------------------------- 1 ****(4) ...
2
votes
1answer
380 views

Lightweight ASCII Graph Plotting Library in java

I'm looking for a solution to display the distribution of request times in our system. I would like to plot a histogram, and save it in a log file. Is there a plotting library in java that can ...
1
vote
1answer
465 views

Image histogram generated by JFreeChart

I want to display histogram of image color channels. At first my reading of pixels looks like: for(int i=0; i<width; i++) for(int j=0; j<height; j++) { ...
1
vote
0answers
271 views

Java open source histogram

I need a histogram class for a project. I am not interested in the graphical representation, only in the "book keeping". Ideally, it should be able to also give me cutoffs( for example, 80% cutoff ...
2
votes
3answers
2k views

histograms and function graphs with java swing

Is there any predefined component in Java Swing that allow to draw histograms or functions graphs? If there is not. Does anyone know a good open-source library with a license that is not GPL2.0/3.0 ? ...
5
votes
2answers
628 views

Which type of Jfreechart is more suitable for Histograms?

I am working with JFreeChart in order to show a Histogram Chart. My idea is to create a chart with 10 double bars, one bar of the pair in a different color. The 10 values will correspond to 10 weeks, ...
0
votes
1answer
417 views

Arrays. Histograms, dividing array into subset and counting number of elements in each group. Java

Hi im really confused abt this method which i have to create. I have to create a histogram array with num division categories i.e selecting a reasonable integer range and step size for numdivisons to ...
3
votes
1answer
494 views

Feature/blob correlation and histogram analysis

I'm working on a sketch search engine that correlates whatever someone's sketching with a picture in the database (the db is just about 40 pictures now). I'm doing this mostly for fun so I'm not that ...
3
votes
1answer
1k views

jfreechart histogram with dates

I want to display some dates in the X axis of a histogram chart, but i don't understand how i can do it with this code i can create a simple histogram with couples of x-y values, but they can olny be ...
2
votes
1answer
777 views

Java: Getting JPEG DCT coefficients histogram

I need a Java library, code snippet,... to get the Frequency distribution of the 64 DCT coefficients of a JPEG file. Any ideas? Thx!
6
votes
4answers
408 views

Printing class histogram programmaticly

is there any way to print top used N classes on the current java application programmaticly? sample output: N=10 num #instances #bytes class name -------------------------------------- 1: ...
2
votes
3answers
1k views

Making non-graphical Histogram from array values

Via the starPrint method I need to make the frequency of each number populated in the array display in a histogram as such: 1=3*** 2=4**** 3=7******* and so on. It needs the number of stars ...
1
vote
2answers
1k views

Dynamically building and updating Histograms with JFreeChart

I've got a stream of incoming data that I would like to plot using a simple histogram. I don't know the range of values, or the proper resolution or bin width to use for the histogram. ...
0
votes
2answers
450 views

How can I use Jacob to create a graph in a MS Word document

How can I use Jacob to create a graph in a MS Word document?
0
votes
1answer
1k views

Histogram frequency help Java

public class Histogram { private int lo_; private int hi_; private int[] frequency_; public Histogram(int lo, int hi) { lo_ = lo; hi_ = hi; int range = hi_-lo_+1; frequency_ = new ...
0
votes
5answers
2k views

Generate random number histogram using java

Histogram -------------------------------------------------------- 1 ****(4) 2 ******(6) 3 ***********(11) 4 *****************(17) 5 **************************(26) 6 ...
2
votes
5answers
7k views

Beginning Java (Histogram)

I'm taking a beginner Java class, with the assignment to create a histogram program with the following output: (100 and 10 are user inputs). How many numbers? 100 How many intervals? 10 Histogram ...