@thi.ng/pixel-analysis 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/hues.d.ts +1 -1
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-06-24T21:39:38Z
3
+ - **Last updated**: 2025-07-10T14:20:23Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/hues.d.ts CHANGED
@@ -9,7 +9,7 @@ import type { IntBuffer } from "@thi.ng/pixel/int";
9
9
  * @param maxHue
10
10
  * @param minSat
11
11
  */
12
- export declare function selectHueRangeHsv(img: IntBuffer | FloatBuffer, minHue: number, maxHue: number, minSat: number): Generator<Uint8Array<ArrayBufferLike> | Float32Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, void, unknown>;
12
+ export declare function selectHueRangeHsv(img: IntBuffer | FloatBuffer, minHue: number, maxHue: number, minSat: number): Generator<Float32Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, void, unknown>;
13
13
  /**
14
14
  * Similar to {@link selectHueRangeHsv}, but only returns a count of HSV pixel
15
15
  * values/colors matching given hue range and minimum saturation (all
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/pixel-analysis",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Image color & feature analysis utilities",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,19 +39,19 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.29",
43
- "@thi.ng/color": "^5.7.42",
44
- "@thi.ng/compare": "^2.4.21",
45
- "@thi.ng/math": "^5.11.29",
46
- "@thi.ng/pixel": "^7.5.1",
47
- "@thi.ng/pixel-convolve": "^1.1.1",
48
- "@thi.ng/pixel-dominant-colors": "^2.0.0",
49
- "@thi.ng/transducers": "^9.4.3",
50
- "@thi.ng/vectors": "^8.3.1"
42
+ "@thi.ng/api": "^8.11.30",
43
+ "@thi.ng/color": "^5.7.44",
44
+ "@thi.ng/compare": "^2.4.22",
45
+ "@thi.ng/math": "^5.11.30",
46
+ "@thi.ng/pixel": "^7.5.2",
47
+ "@thi.ng/pixel-convolve": "^1.1.2",
48
+ "@thi.ng/pixel-dominant-colors": "^2.0.1",
49
+ "@thi.ng/transducers": "^9.5.1",
50
+ "@thi.ng/vectors": "^8.3.2"
51
51
  },
52
52
  "devDependencies": {
53
- "esbuild": "^0.25.5",
54
- "typedoc": "^0.28.5",
53
+ "esbuild": "^0.25.6",
54
+ "typedoc": "^0.28.7",
55
55
  "typescript": "^5.8.3"
56
56
  },
57
57
  "keywords": [
@@ -107,5 +107,5 @@
107
107
  "status": "beta",
108
108
  "year": 2024
109
109
  },
110
- "gitHead": "45e91ee75236e39fc87ea10fbabac1272bef62e3\n"
110
+ "gitHead": "56d8f088389b22192a06e9a395b5eecebf47697a\n"
111
111
  }