@thi.ng/pixel-analysis 0.3.1 → 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.
- package/CHANGELOG.md +1 -1
- package/hues.d.ts +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
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<
|
|
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.
|
|
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.
|
|
43
|
-
"@thi.ng/color": "^5.7.
|
|
44
|
-
"@thi.ng/compare": "^2.4.
|
|
45
|
-
"@thi.ng/math": "^5.11.
|
|
46
|
-
"@thi.ng/pixel": "^7.5.
|
|
47
|
-
"@thi.ng/pixel-convolve": "^1.1.
|
|
48
|
-
"@thi.ng/pixel-dominant-colors": "^2.0.
|
|
49
|
-
"@thi.ng/transducers": "^9.5.
|
|
50
|
-
"@thi.ng/vectors": "^8.3.
|
|
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.
|
|
54
|
-
"typedoc": "^0.28.
|
|
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": "
|
|
110
|
+
"gitHead": "56d8f088389b22192a06e9a395b5eecebf47697a\n"
|
|
111
111
|
}
|