- [1983. Peter Burt and Edward Adelson. The Laplacian Pyramid as a Compact Image Code][1]
- [1993. Scott Daly. The visible differences predictor: an algorithm for the assessment of image fidelity][2]
- [1995. Andrew S. Glassner. In Principles of digital image synthesis, pages 59-66][3]
- [1997. Gregory Ward-Larson, Holly Rushmeier, and Christine Piatko. A visibility matching tone reproduction operator for high dynamic range scenes][4]
- [1999. Mahesh Ramasubramanian, Sumant N. Pattnaik, Donald P. Greenberg. A perceptually based physical error metric for realistic image synthesis][5]
- [2004. Yangli Hector Yee, Anna Newman. A perceptual metric for production Testing][6]
- [2004. HECTOR YEE, SUMANTA PATTANAIK and DONALD P. GREENBERG. Spatiotemporal Sensitivity and Visual Attention for Efficient Rendering of Dynamic Environments][7]
- [2004. Hector Yee. *A Perceptual Metric for Production Testing (Submitted and Accepted in Journal of
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Selecting Windows SDK version 10.0.20277.0 to target Windows 10.0.19042. | |
Microsoft (R) Build Engine version 16.9.0+5e4b48a27 for .NET Framework | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Checking Build System | |
Performing download step (git clone) for 'glfw-populate' | |
Cloning into 'glfw-src'... | |
BUG: run-command.c:520: disabling cancellation: Invalid argument | |
fatal: destination path 'glfw-src' already exists and is not an empty directory. | |
fatal: destination path 'glfw-src' already exists and is not an empty directory. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<omitted>/.cargo/bin/cargo.exe install --color=always --force grcov | |
Updating crates.io index | |
Downloading crates ... | |
Downloaded grcov v0.7.1 | |
Installing grcov v0.7.1 | |
Downloading crates ... | |
Downloaded cargo-binutils v0.3.3 | |
Downloaded cargo_metadata v0.11.4 | |
Downloaded fomat-macros v0.3.1 | |
Downloaded slug v0.1.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'dart:typed_data'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/src/scheduler/ticker.dart'; | |
import 'package:flutter/widgets.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
// https://github.com/malkia/tictactoc | |
// https://malkia.github.io/tictactoe | |
// https://codepen.io/malkia76/pen/YzWojXy | |
void main() { | |
runApp(myApp()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'dart:io'; | |
var random = Random(); | |
List<int> makeRandom(int n) { | |
var x = List<int>(n); | |
for (int i = 0; i < n; i++) { | |
x[i] = random.nextInt(n * 10); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:isolate'; | |
import 'dart:io'; | |
import 'dart:math'; | |
import 'package:crypto/crypto.dart'; | |
class Stop {} | |
final _stop = Stop(); | |
class Args { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Try on DartPad.dev | |
import 'package:flutter/foundation.dart' | |
show debugDefaultTargetPlatformOverride; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/widgets.dart'; | |
import 'dart:math'; | |
import 'dart:async'; | |
var random = Random(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/foundation.dart' | |
show debugDefaultTargetPlatformOverride; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/widgets.dart'; | |
import 'dart:math'; | |
var random = Random(0); | |
class GammonRules { | |
// The total number of points on the table. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://www.reddit.com/r/cpp/comments/934r63/speeding_up_string_view_string_split/ | |
// StringViewTestss.cpp : performance experiments for string_view | |
// | |
#include <string_view> | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <algorithm> |