calc-image-stats
Advanced tools
Comparing version
@@ -0,22 +1,35 @@ | ||
var __defProp = Object.defineProperty; | ||
var __getOwnPropSymbols = Object.getOwnPropertySymbols; | ||
var __hasOwnProp = Object.prototype.hasOwnProperty; | ||
var __propIsEnum = Object.prototype.propertyIsEnumerable; | ||
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; | ||
var __spreadValues = (a, b) => { | ||
for (var prop in b || (b = {})) | ||
if (__hasOwnProp.call(b, prop)) | ||
__defNormalProp(a, prop, b[prop]); | ||
if (__getOwnPropSymbols) | ||
for (var prop of __getOwnPropSymbols(b)) { | ||
if (__propIsEnum.call(b, prop)) | ||
__defNormalProp(a, prop, b[prop]); | ||
} | ||
return a; | ||
}; | ||
var __objRest = (source, exclude) => { | ||
var target = {}; | ||
for (var prop in source) | ||
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0) | ||
target[prop] = source[prop]; | ||
if (source != null && __getOwnPropSymbols) | ||
for (var prop of __getOwnPropSymbols(source)) { | ||
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop)) | ||
target[prop] = source[prop]; | ||
} | ||
return target; | ||
}; | ||
const calcStats = require("calc-stats"); | ||
const guessImageLayout = require("guess-image-layout"); | ||
const xdim = require("xdim"); | ||
const range = ct => new Array(ct).fill(0).map((_, i) => i); | ||
/** | ||
* @name calcImageStats | ||
* @param {Array} values - multi-dimensional array of numbers | ||
* @param {options} options - Options | ||
* @param {options} options.bands - number of bands (3 for RGB, 4 for RGBA) | ||
* @param {options} options.height - height of image | ||
* @param {options} options.precise - calculate using floating point arithmetic or precise numerical strings. default is false | ||
* @param {options} options.stats - array of stats to calculate. see https://github.com/danieljdufour/calc-stats#specify-calculations | ||
* @param {options} options.width - width of image | ||
* @param {options} options.layout - layout of values (using xdim layout syntax) | ||
*/ | ||
function calcImageStats( | ||
values, | ||
{ bands, height, precise = false, stats, width, layout, ...rest } = {} | ||
) { | ||
const range = (ct) => new Array(ct).fill(0).map((_, i) => i); | ||
function calcImageStats(values, _a = {}) { | ||
var _b = _a, { bands, height, precise = false, stats, width, layout } = _b, rest = __objRest(_b, ["bands", "height", "precise", "stats", "width", "layout"]); | ||
if (typeof values.then === "function") { | ||
@@ -27,3 +40,2 @@ throw new Error( | ||
} | ||
const result = guessImageLayout({ | ||
@@ -36,25 +48,20 @@ bands, | ||
}); | ||
bands ??= result.bands; | ||
height ??= result.height; | ||
layout ??= result.layout; | ||
width ??= result.width; | ||
bands != null ? bands : bands = result.bands; | ||
height != null ? height : height = result.height; | ||
layout != null ? layout : layout = result.layout; | ||
width != null ? width : width = result.width; | ||
const bandRange = range(bands); | ||
const bandStats = bandRange.map(bandIndex => { | ||
const bandStats = bandRange.map((bandIndex) => { | ||
const rect = { band: [bandIndex, bandIndex] }; | ||
const sizes = { band: bands, column: width, row: height }; | ||
const band = xdim.iterClip({ data: values, layout, rect, sizes }); | ||
return calcStats(band, { precise, stats, ...rest }); | ||
return calcStats(band, __spreadValues({ precise, stats }, rest)); | ||
}); | ||
return { depth: bands, height, width, bands: bandStats }; | ||
} | ||
if (typeof define === "function" && define.amd) { | ||
define(function () { | ||
define(function() { | ||
return calcImageStats; | ||
}); | ||
} | ||
if (typeof module === "object") { | ||
@@ -65,9 +72,7 @@ module.exports = calcImageStats; | ||
} | ||
if (typeof self === "object") { | ||
self.calcImageStats = calcImageStats; | ||
} | ||
if (typeof window === "object") { | ||
self.calcImageStats = calcImageStats; | ||
} |
{ | ||
"name": "calc-image-stats", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "Calculate Band Statistics for an Image", | ||
@@ -12,4 +12,6 @@ "main": "calc-image-stats.js", | ||
"scripts": { | ||
"build": "esbuild ./src/calc-image-stats.js --target=es2016 --outfile=./calc-image-stats.js", | ||
"f": "npm run format", | ||
"format": "npx prettier --arrow-parens=avoid --trailing-comma=none --write *.js *.ts", | ||
"prepublishOnly": "npm run format && npm run build", | ||
"test": "npm run test:js && npm run test:ts", | ||
@@ -40,9 +42,10 @@ "test:js": "node test.js", | ||
"guess-image-layout": "^0.1.0", | ||
"xdim": "^1.6.0" | ||
"xdim": "^1.10.1" | ||
}, | ||
"devDependencies": { | ||
"esbuild": "^0.18.17", | ||
"find-and-read": "^1.2.0", | ||
"flug": "^2.3.1", | ||
"readim": "^0.0.2" | ||
"flug": "^2.6.0", | ||
"readim": "^1.0.0" | ||
} | ||
} |
14754
5.93%128
13.27%4
33.33%Updated