You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api-input.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,9 +82,9 @@ A `Promise` is returned when `callback` is not provided.
82
82
*`maxX` (x-coordinate of one of the pixel where the maximum lies)
83
83
*`maxY` (y-coordinate of one of the pixel where the maximum lies)
84
84
*`isOpaque`: Is the image fully opaque? Will be `true` if the image has no alpha channel or if every pixel is fully opaque.
85
-
*`entropy`: Histogram-based estimation of greyscale entropy, discarding alpha channel if any (experimental)
86
-
*`sharpness`: Estimation of greyscale sharpness based on the standard deviation of a Laplacian convolution, discarding alpha channel if any (experimental)
87
-
*`dominant`: Object containing most dominant sRGB colour based on a 4096-bin 3D histogram (experimental)
85
+
*`entropy`: Histogram-based estimation of greyscale entropy, discarding alpha channel if any.
86
+
*`sharpness`: Estimation of greyscale sharpness based on the standard deviation of a Laplacian convolution, discarding alpha channel if any.
87
+
*`dominant`: Object containing most dominant sRGB colour based on a 4096-bin 3D histogram.
88
88
89
89
**Note**: Statistics are derived from the original input image. Any operations performed on the image must first be
90
90
written to a buffer in order to run `stats` on the result (see third example).
Copy file name to clipboardExpand all lines: lib/input.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -401,9 +401,9 @@ function metadata (callback) {
401
401
* - `maxX` (x-coordinate of one of the pixel where the maximum lies)
402
402
* - `maxY` (y-coordinate of one of the pixel where the maximum lies)
403
403
* - `isOpaque`: Is the image fully opaque? Will be `true` if the image has no alpha channel or if every pixel is fully opaque.
404
-
* - `entropy`: Histogram-based estimation of greyscale entropy, discarding alpha channel if any (experimental)
405
-
* - `sharpness`: Estimation of greyscale sharpness based on the standard deviation of a Laplacian convolution, discarding alpha channel if any (experimental)
406
-
* - `dominant`: Object containing most dominant sRGB colour based on a 4096-bin 3D histogram (experimental)
404
+
* - `entropy`: Histogram-based estimation of greyscale entropy, discarding alpha channel if any.
405
+
* - `sharpness`: Estimation of greyscale sharpness based on the standard deviation of a Laplacian convolution, discarding alpha channel if any.
406
+
* - `dominant`: Object containing most dominant sRGB colour based on a 4096-bin 3D histogram.
407
407
*
408
408
* **Note**: Statistics are derived from the original input image. Any operations performed on the image must first be
409
409
* written to a buffer in order to run `stats` on the result (see third example).
0 commit comments