本文整理汇总了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)));
}
}
}
示例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");
}