Skip to content

Instantly share code, notes, and snippets.

View dejuata's full-sized avatar
:octocat:
Frontend Developer

Juan Pino dejuata

:octocat:
Frontend Developer
View GitHub Profile
@dejuata
dejuata / main.cpp
Created November 13, 2016 18:36
Algoritmo de Otsu C++ Procesamiento Digital de Imagenes
// Information -> http://www.labbookpages.co.uk/software/imgProc/otsuThreshold.html
#include <cstdlib>
#include <iostream>
#include <stdlib.h>
#include <vector>
#include <algorithm> // std::min_element, std::max_element
#include <math.h>
#define length(x) (sizeof(x)/sizeof(x[0]))
{"version":1,"resource":"file:///c%3A/Pragma/Ruta/00%20Curso%20Dise%C3%B1o%20de%20formularios%20Angular/angular-forms/src/app/app.module.ts","entries":[{"id":"Jc3B.ts","timestamp":1659725098527},{"id":"LBuE.ts","timestamp":1660057839386}]}
@dejuata
dejuata / main.cpp
Created September 10, 2016 21:05
Funcion Convolución de imagenes en c++
#include <cstdlib>
#include <iostream>
#include <stdlib.h>
#include <time.h>
#define length(x) (sizeof(x)/sizeof(x[0]))
using namespace std;
int convolucion ()