I created the ImageData.h file Please make the implementation part of ImageData.
ID: 3844250 • Letter: I
Question
I created the ImageData.h file
Please make the implementation part of ImageData.h.
When you create it, divide it into ImageData.cpp and Test.cpp.
class ImageData
{
private:
int rows;
int cols;
unsigned char* pixelValues;
unsigned char* pixelProcessed;
public:
void imageData(string fname)
{
}
int imageProc(int Param)
{
}
int imageWrite(string fname)
{
}
~imageData()
{
}
};
Explanation / Answer
class ImageData
{
private:
int rows;
int cols;
unsigned char* pixelValues;
unsigned char* pixelProcessed;
public:
void imageData(string fname)
{
}
int imageProc(int Param)
{
}
int imageWrite(string fname)
{
}
~imageData()
{
}
};
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.