المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Calculating Entropy of a file and coding it using Hamming



C++ Programming
06-19-2009, 02:12 PM
Hello there!

I am trying to solve a problem for a project i took and i am in the final

part of it...(view below for my until now code)

Well the aim is to calculate the entropy of a file and then to use

Hamming to code it. I managed to make both parts based on what I learned

from the class and read in the book. (Please if you are familiar with the

object tell me if it is correct http://www.barakasoft.com/script/Forums/Images/smiley_smile.gif )

So, my problem is that I am not able to merge those two parts below (you

dont need to read the theory for it).. like finding the entropy and then

continue for the coding of that file.

Any help, advice, anything is appreciate.
Thank you!

Entropy Calculation

#include "BufferedNode.h"
#include "Buffer.h"
#include "Vector.h"
#include
#include

#ifdef HAVE_VALUES_H
#include
#endif

#ifdef HAVE_FLOAT_H
#include
#endif

class Entropy;

DECLARE_NODE(Entropy)
/*Node
*
* @name Entropy
* @category DSP:Misc
* @description Calculates the entropy of a vector
*
* @input_name INPUT
* @input_type Vector
* @input_description Input vector
*
* @output_name OUTPUT
* @output_type Vector
* @output_description Entropy value (vector of 1)
*
END*/


class Entropy : public BufferedNode {

int inputID;
int outputID;

public:
Entropy(string nodeName, ParameterSet params)
: BufferedNode(nodeName, params)

{
inputID = addInput("INPUT");
outputID = addOutput("OUTPUT");
}

void calculate(int output_id, int count, Buffer &out)
{
ObjectRef inputValue = getInput(inputID, count);

const Vector &in = object_cast (inputValue);
int inputLength = in.size();

Vector &output = *Vector::alloc(1);
out[count] = &output;

float s2=0;
float entr=0;
for (int i=0;i