UNPKG
hugh-detector
Version:
latest (0.0.0)
0.0.0
detect the color red in an image
github.com/substack/hugh-detector
substack/hugh-detector
hugh-detector
/
example
/
detect.js
7 lines
(5 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
hugh =
require
(
'../'
);
var
fs =
require
(
'fs'
);
var
buf = fs.
readFileSync
(process.
argv
[
2
]);
var
detected =
hugh
(
1280
,
720
, buf);
console
.
dir
(detected);