Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DeepFundingAgriAI
/
Field-Monitoring
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
46c0e18
Field-Monitoring
/
scripts
/
truecolor.js
A-O98
first commit
2cdce84
9 months ago
raw
Copy download link
history
blame
Safe
241 Bytes
//VERSION=3
function
setup
(
) {
return
{
input
: [{
bands
: [
"B02"
,
"B03"
,
"B04"
]
}],
output
: {
bands
:
3
}
};
}
function
evaluatePixel
(
sample
) {
return
[sample.
B04
, sample.
B03
, sample.
B02
];
}