0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【画像処理100本ノックに挑戦】Q.6. 減色処理

Posted at

使用したライブラリ

【画像処理100本ノック】独自の画像入出力クラスを作る

Q.6. 減色処理

ここでは画像の値を256^3から4^3、すなわちR,G,B in {32, 96, 160, 224}の各4値に減色せよ。 これは量子化操作である。

これは簡単ね。

int _256to4(int val)
{
	int ret;
	if (0 <= val && val < 64) return 32;
	else if (64 <= val && val < 128) return 96;
	else if (128 <= val && val < 192) return 160;
	else return 224;
}

int main()
{
	PPM ppm("imori.pnm");
	int width = ppm.Get_width();
	int height = ppm.Get_height();
	PPM ppm2(width, height);

	for (int j = 0; j < height; j++)
		for (int i = 0; i < width; i++)
		{
			int r = ppm(i, j, 'r');
			int g = ppm(i, j, 'g');
			int b = ppm(i, j, 'b');

			int r2 = _256to4(r);
			int g2 = _256to4(g);
			int b2 = _256to4(b);
			
			ppm2(i, j, 'r') = r2;
			ppm2(i, j, 'g') = g2;
			ppm2(i, j, 'b') = b2;
		}

	ppm2.Flush("out.ppm");
	return 0;
}

imori.jpg out.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?