Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
for (int i = 0; i < image.length; i++) {
2
for (int j = 0; j < image[i].length; j++) {
3
assert(0 <= image[i][j] && image[i][j] <= 255);
4
histogram[image[i][j]]++;
5
}
6
}
7
8