当前位置: 首页>>代码示例>>C++>>正文


C++ SparseMatrix::Get方法代码示例

本文整理汇总了C++中SparseMatrix::Get方法的典型用法代码示例。如果您正苦于以下问题:C++ SparseMatrix::Get方法的具体用法?C++ SparseMatrix::Get怎么用?C++ SparseMatrix::Get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SparseMatrix的用法示例。


在下文中一共展示了SparseMatrix::Get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: Check

static void Check(const char *S, const bool cHO, const vector<PointPriorityQueue::Entry*>& heap, const SparseMatrix<size_t*>& map, const uint w, const uint h)
{
	for (size_t i = 0; i < heap.size(); ++i)
	{
		const PointPriorityQueue::Entry *e = heap[i];
		assert(i == e->index);
		if (i && cHO)
			assert(e->score >= heap[(i-1)/2]->score);
		assert(e->I == e->x + e->y * w);
		assert(&e->index == map.Get(e->x, e->y));
	}
	for (uint y = 0; y < h; ++y)
	{
		for (uint x = 0; x < w; ++x)
		{
			const size_t *index = map.Get(x, y);
			size_t i;
			assert(index == NULL || ((i = *index) < heap.size() && heap[i]->I == (x + y * w)));
		}
	}
}
开发者ID:slash-segmentation,项目名称:livewire,代码行数:21,代码来源:PointPriorityQueue.cpp

示例2: WriteBitmap

void Livewire::WriteBitmap(const SparseMatrix<uint> &data, uint w, uint h, const char *name)
{
	QImage b(w, h, QImage::Format_Indexed8);
	b.setColorTable(*GetGrayscaleColorTable());
	uint max = 0;
	for (uint y = 0; y < h; ++y)
	{
		for (uint x = 0; x < w; ++x)
		{
			uint val = data.Get(x, y);
			if (val > max)
				max = val;
		}
	}
	for (uint y = 0; y < h; ++y)
	{
		byte *line = b.scanLine(y);
		for (uint x = 0; x < w; ++x)
			line[x] = (byte)(data.Get(x, y) * 255 / max);
	}
	b.save(QString::number(QDateTime::currentMSecsSinceEpoch()) + "-" + QString(name) + ".png");
}
开发者ID:slash-segmentation,项目名称:livewire,代码行数:22,代码来源:BitmapWriter.cpp


注:本文中的SparseMatrix::Get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。