Skip to content

Releases: gecko0307/dlib

dlib 1.3.0

21 Feb 18:21
Compare
Choose a tag to compare

No changes since dlib 1.3.0 beta1.

dlib 1.3.0 beta1

14 Feb 14:37
Compare
Choose a tag to compare
  • dlib.random
    • New module dlib.random.random that implements random, a pseudo-random number generator based on C rand
  • dlib.math
    • Function that computes quadratic Bézier curve - dlib.math.interpolation.bezierQuadratic
    • GNU D Compiler (GDC) support in dlib.math.sse

dlib 1.2.1

30 Aug 20:39
Compare
Choose a tag to compare
  • dlib.image
    • Median filter (dlib.image.filters.median)
  • dlib.filesystem
    • Bugfixes in dlib.filesystem.posix.common
  • dlib.core
    • dlib.core.thread: fix deprecations in Windows multithreading API signatures
  • dlib.math
    • Fix unittest for dlib.math.utils.nextPowerOfTen
  • Misc
    • Added AUTHORS.md.

dlib 1.2.0

30 Apr 09:00
Compare
Choose a tag to compare

No changes since dlib 1.2.0 beta1.

dlib 1.2.0 beta1

19 Apr 19:14
Compare
Choose a tag to compare
  • dlib.math
    • homothetyMatrix and homothetyMatrix2D functions in dlib.math.transformation
    • radtorev and revtorad functions in dlib.math.utils that convert radians to revolutions and revolutions to radians, respectively
  • dlib.image
    • New funtion drawRect in dlib.image.render.shapes
  • Misc
    • Added CODE_OF_CONDUCT.md.

dlib 1.1.0

05 Oct 20:05
Compare
Choose a tag to compare

No changes since dlib 1.1.0 beta1.

dlib 1.1.0 beta1

10 Sep 17:33
Compare
Choose a tag to compare
  • dlib.geometry
    • New module dlib.geometry.mpr - implementation of the Minkowski Portal Refinement algorithm that detects intersection between two arbitrary convex shapes
    • New module dlib.geometry.support with support functions for some common shapes
  • dlib.math
    • integer and frac functions in dlib.math.utils that return integer part and fractional part of a real number.
  • dlib.image
    • Fix compilation for x86.

dlib 1.0.0

17 Feb 16:35
Compare
Choose a tag to compare

No changes since dlib 1.0.0 beta2.

dlib 1.0.0 beta2

05 Feb 10:27
Compare
Choose a tag to compare

Changes since dlib 1.0.0 beta1:

  • dlib.image
    • File-based image loading functions now preload data to memory, so that decoders run faster (2x-10x depending on format and image size).

dlib 1.0.0 beta1

12 Jan 07:41
Compare
Choose a tag to compare
  • dlib.core
    • Breaking change: dlib.core.bitio.swapEndian16 moved to dlib.math.utils
    • POSIX thread creation is now validated in debug mode
  • dlib.math
    • Breaking change: deprecated method Quaternion.generator has been removed
    • Breaking change: deprecated functions sum, invertArray, allIsZero in dlib.math.utils have been removed
    • interpHermiteDerivative
    • interpHermite now support vector types
    • Complexd alias to Complex!(double) in dlib.math.complex
    • Fix dlib.math.complex.pow, dlib.math.complex.atan2
  • dlib.geometry
    • Breaking change: deprecated method Ray.intersectSphere with position and radius arguments has been removed
    • Breaking change: deprecated method Ray.intersectTriangle with v0, v1, v2 arguments has been removed.
    • Fix Triangle.boundingBox
    • New function intrSphereVsAABB in dlib.geometry.intersection
    • AABB.intersectsSphere is deprecated, use intrSphereVsAABB instead