Skip to content

Instantly share code, notes, and snippets.

View CmdQ's full-sized avatar

Tobias Becker CmdQ

  • Amazon
  • Vancouver
  • 16:02 (UTC -07:00)
View GitHub Profile
@CmdQ
CmdQ / # comby - 2021-05-25_09-07-22.txt
Created May 25, 2021 07:16
comby on Ubuntu 20.04.2 LTS - Homebrew build logs
Homebrew build logs for comby on Ubuntu 20.04.2 LTS
Build date: 2021-05-25 09:07:22
@CmdQ
CmdQ / radixsort.hpp
Last active September 5, 2023 06:22
Radix sort for (un-)signed integer types, float & double.
/* Copyright (c) 2015 Tobias Becker
**
**
**
** Permission is hereby granted, free of charge, to any person obtaining a copy
** of this software and associated documentation files (the "Software"), to deal
** in the Software without restriction, including without limitation the rights
** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
** copies of the Software, and to permit persons to whom the Software is
** furnished to do so, subject to the following conditions:
@CmdQ
CmdQ / fast_gaussian_blur.cpp
Last active September 20, 2019 16:04
Fast Gaussian blur IIR filter. Building on- “Recursive implementation of the Gaussian filter” by Ian T. Young, Lucas J. van Vliet- “Boundary Conditions for Young - van Vliet Recursive Filtering” by Bill Triggs, Michael Sdika- “Boundary Treatment for Young–van Vliet Recursive Zero-Mean Gabor Filtering” by Vladimir Ulman
#include <algorithm>
#include <array>
#include <vector>
#include <stdexcept>
#include <iterator>
using namespace std;
namespace
{