Skip to content

Instantly share code, notes, and snippets.

View caiofcm's full-sized avatar
🎯
Focusing

Caio Curitiba Marcellos caiofcm

🎯
Focusing
View GitHub Profile
@caiofcm
caiofcm / fractal-dimension.py
Created January 18, 2021 17:54 — forked from rougier/fractal-dimension.py
Fractal dimension computing
# -----------------------------------------------------------------------------
# From https://en.wikipedia.org/wiki/Minkowski–Bouligand_dimension:
#
# In fractal geometry, the Minkowski–Bouligand dimension, also known as
# Minkowski dimension or box-counting dimension, is a way of determining the
# fractal dimension of a set S in a Euclidean space Rn, or more generally in a
# metric space (X, d).
# -----------------------------------------------------------------------------
import cv2
@caiofcm
caiofcm / Makefile
Last active June 18, 2018 13:02
pdflatex makefile
# LaTeX Makefile
FILE=thesis
all: $(FILE).pdf
.PHONY: clean
clean:
rm -rf *.blg
rm -rf *.out