0
votes
2answers
45 views

finding mode from histogram

i have this function to print the histogram, I suppose to use this function calculate mode as well, I understand that to find mode you need to compare number of occurrences of each score, but I can't ...
0
votes
3answers
35 views

histogram went in to infinite loop

Hi I have this code here int calMode(RECORD list[], int count) { int tempMode = 1; int i = 1, j, k; int current = 0; while ( i <= count) { k = 1; if ...
-2
votes
1answer
33 views

writing function to output a histogram of scores

#include <stdio.h> #include <stdlib.h> #include <string.h> #define FILE_NAME 20 #define LIST_SIZE 50 typedef struct { char *name; int score; ...
-1
votes
1answer
279 views

compare histograms of grayscale images in opencv

hi can anyone provide me with a simple open cv program to load two RGB images, convert it to Gray scale, calculate histogram and then compare their histograms. I saw a similar program done in the open ...
-3
votes
1answer
94 views

Creating a histogram to display particular characters [closed]

Take user input a line of text with _'s as the spaces and create a character and word count and create a histogram of the different character counts. Also exit the program when any form of exit is ...
1
vote
1answer
106 views

What is fastest way to group array elements into buckets in iOS?

So I have an array of 500,000 elements: float* arrayToBucketize=(float*) malloc(sizeof(float)*500000); and an array that represents the buckets: int buckets[5]={0,25,50,75,100}; What is the ...
1
vote
1answer
101 views

How to draw a histogram with ncurses?

I have a code that reads from input, counts letters and draws a histogram as ASCII art. I would like to do the same but with ncurses. How to do it? #include <stdio.h> int main(void) { int c, ...
-1
votes
2answers
70 views

C Histogram wrong numbers

hi i have this function int printofarray(int *j,double *n) { int x,k; k=*j; if(n==NULL) { printf("array was not created\n"); return 1;} for(x=0;x<k;x++){ printf("%.2lf\n",*(n+x));} return 0; } ...
1
vote
1answer
107 views

Statistically collecting rounding error in a program (C)

I wrote a program that compute 1000000! using FFT. (please allow me to be short and omit some theoretical resoning :) ) What i want to do is measure ALL the rounding error between a double value and ...
0
votes
1answer
203 views

GNU Scientific Library probability distribution functions in C

I have a set of GSL Histograms, which are used to make a set of probability distribution functions, which according to the documentation are stored in a struct, as follows: Data Type: ...
0
votes
0answers
372 views

K&R Exercise 1-13, Vertical histogram program

I was able to make a histogram with horizontal bars, although it was far from easy for me . I tried to make a vertical version by just changing the printing part but it isn't working. The output only ...
0
votes
1answer
765 views

how to filter objects of interest from a histogram of an image?

the scenario goes like this, i have an image which i want to extract text only from it for further OCR processing, i have tried to remove logos by erosion and dilation but it fails when the card have ...
0
votes
1answer
295 views

Rolling Dice Histogram

Hello I have written the code needed for a dice rolling generator base on rand() and time.h. It basically asks the user to input the number of times he wants the dice to be rolled and then rolls those ...
0
votes
1answer
160 views

glibc detected when trying to use cvCreateHist in C

This is a part of my code int histsize=16; float range=[0,255]; float* ranges[] = { range }; bool uniform=true; CvHistogram* hist = cvCreateHist(1, &histsize, CV_HIST_ARRAY, ranges, uniform); ...
5
votes
3answers
183 views

Unexpected results when assigning values to an array In c

I am reading C The Programming Language Second Edition. I've come to this exercise [1-13 in Section 1.6, pg. 24 2nd ed]. Write a program to print a histogram of the lengths of words in its ...
0
votes
1answer
406 views

simple ANSI C histogram function for 1D array of double-precision data?

Is there a generic solution out there to create a 1-D histogram array of data from an input 1-D array of double-precision data? Not looking to plot the histogram in C, I just need something to create ...
1
vote
2answers
269 views

histogram function in ansi C program: GSL and/or others?

If I just want to use the gsl_histogram.h library from Gnu Scientific Library (GSL), can I copy it from an existing machine (Mac OS Snow Leopard) that has GSL installed to a different machine (Linux ...
0
votes
1answer
220 views

Quantize values of an image

I am working in OpenCV on Linux.I am trying to quantize values of vectors Ib,Ig,Ir which are of length 100. for (int i=0;i<img31->height;i++) { for (int ...
1
vote
2answers
463 views

Masking image data using values generate from a histogram in OpenCV

Given a generated histogram that I got from an image I was wondering if there was any optimized way to generate a mask. Below I have added in 3 different images: the reference to use, the histogram ...
1
vote
2answers
1k views

opencv calcHist error

I am getting an ambiguity error in OpenCV when I am trying to calculate a histogram and was wondering if I was missing something. I took a look at the function parameters and saw that it took one of ...
0
votes
1answer
1k views

Tracking objects using histogram data in OpenCV

I am trying to track objects inside an image using histogram data from the object. I pass in a reference image to get the histogram data and store it in a Mat. From there I load in an image and try ...
3
votes
4answers
9k views

Draw Histogram of a colored Image with Opencv

anyone can link me or give an example of code in C / C + + that creates histograms for a colored image (RGB) and displays them?
9
votes
3answers
9k views

searching for fast/efficient histogram algorithm

I don't do much coding outside of Matlab, but I have a need to export my Matlab code to another language, most likely C. My Matlab code includes a histogram function, histc(), that places my input ...
1
vote
3answers
2k views

how to plot a histogram in c

how do I plot a histogram in c from 2 arrays?
0
votes
1answer
1k views

How to plot the Histogram of bmp image?

I have got all the pixel values (RGB) of a bmp image. After that, how can i plot the histogram of these values?? I am using C language on my project. Can anyone can help me? Thank you.
0
votes
6answers
900 views

Histogram generating function

i was assigned to make some changes to a C program written by someone else...i want to understand it first to work on it properly...i came upon a function that generates the histogram of ASCII values ...