突出显示图像

时间:2016-04-16 21:14:49

标签: c++ image multidimensional-array

我的导师写道 '突出显示图像中对象的一种方法是使所有像素低于阈值(T1)0,并使所有像素高于阈值(T2)255。使用以下原型编写一个突出显示图像的函数:

void highlight(int image[][MAXHEIGHT],int width, int height, int t1, int t2)

编写一个主程序,从用户输入t1和t2,高亮显示图像,然后写入图像。 “

我已经拥有可以读写图像的功能,但我不知道如何更改图像的像素。

到目前为止

代码:

#include <iostream>
#include <cassert>
#include <cstdlib>
#include <fstream>

using namespace std;

const int MAXWIDTH = 512;
const int MAXHEIGHT = 512;

// reads a PGM file.
void readImage(int image[][MAXHEIGHT], int &width, int &height) {
  char c;
  int x;
  ifstream instr;
  instr.open("city.pgm");

  cout << "This is running " << endl;

  // read the header P2
  instr >> c;  assert(c == 'P');
  instr >> c;  assert(c == '2');

  // skip the comments (if any)
  while ((instr>>ws).peek() == '#') { instr.ignore(4096, '\n'); }

  instr >> width; 
  instr >> height;

  assert(width <= MAXWIDTH);
  assert(height <= MAXHEIGHT);
  int max;
  instr >> max;
  assert(max == 255);

  for (int row = 0; row < height; row++) 
    for (int col = 0; col < width; col++) 
      instr >> image[col][row];
  instr.close();
  return;
}

// Writes a PGM file
void writeImage(int image[][MAXHEIGHT], int width, int height) {
  ofstream ostr;
  ostr.open("outImage.pgm");
  if (ostr.fail()) {
    cout << "Unable to write file\n";
    exit(1);
  };

  // print the header
  ostr << "P2" << endl;
  // width, height
  ostr << width << ' '; 
  ostr << height << endl;
  ostr << 255 << endl;

  for (int row = 0; row < height; row++) {
    for (int col = 0; col < width; col++) {
      assert(image[col][row] < 256);
      assert(image[col][row] >= 0);
      ostr << image[col][row] << ' ';
      // lines should be no longer than 70 characters
      if ((col+1)%16 == 0) ostr << endl;
    }
    ostr << endl;
  }
  ostr.close();
  return;
}


int main ()
{
 int image[MAXWIDTH][MAXHEIGHT], width, height, t1, t2;

 readImage (image, width, height);
 writeImage (image, width, height);

 return 0;
}

1 个答案:

答案 0 :(得分:1)

在您编写的所有代码(包括PGM标题的分析)之后,我不明白为什么要求这样做。

void highlight(int image[][MAXHEIGHT],int width, int height, int t1, int t2) {
    for (int row = 0; row < height; row++) 
        for (int col = 0; col < width; col++) 
            if (image[col][row]<t1) 
                image[col][row] =0; 
            else if (image[col][row]>t2) 
                image[col][row]=255;
}

编辑: 我已经使用了您的索引方案,这似乎很有用,应该可行。然而,通常的做法是表示2D数组,以便行是第一个索引而列是第二个。这样,行由连续元素表示。