Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
def plates(stack, i, num_used, N, P, K):
# Brute force: O(K^N)
if i >= N:
return -1
current_total = -1
for n in range(K + 1):
if num_used + n > P:
break
elif num_used + n == P:
current_total = max(current_total, sum(stack[i][:n]))
@satojkovic
satojkovic / algorithms_openpose.md
Created March 20, 2019 13:52 — forked from alesolano/algorithms_openpose.md
OpenPose TensorFlow Alogrithms
@satojkovic
satojkovic / cudnn_version.cpp
Created October 18, 2017 13:02
print installed cudnn version
#include <cudnn.h>
#include <iostream>
int main(int argc, char** argv) {
std::cout << "CUDNN_VERSION: " << CUDNN_VERSION << std::endl;
return 0;
}
package main
import (
"fmt"
"net/http"
)
type String string
type Struct struct {
# http://stackoverflow.com/questions/24685436/efficient-way-to-cluster-colors-using-k-nearest
import numpy as np
import cv2
def nearest(i, j, src, knn, colors):
sample = np.reshape(src, (-1, 3)).astype(np.float32)
retval, result, neighbors, dist = knn.find_nearest(sample, 1)
return colors[result[0, 0]]
@satojkovic
satojkovic / dfs.cpp
Created July 7, 2014 16:36
depth first search
#include <cstdio>
#include <string>
int n = 4;
int k = 15;
int a[] = {1, 2, 4, 7};
bool dfs(int i, int sum)
{
printf("i == %d, sum == %d\n", i, sum);
#-*- coding: utf-8 -*-
import cv2
from collections import defaultdict
class ImageFlip(object):
def __init__(self):
self._observers = []
#-*- coding: utf-8 -*-
from pit import Pit
import requests
import getpass
import json
HTTPUnauthorized = 401
HTTPCreated = 201
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <glut.h>
static void display(void)
{
cv::Mat img = cv::imread("test.jpg");
cv::flip(img, img, 0);
cv::cvtColor(img, img, CV_BGR2RGB);