var medoidMosaic = function(inCollection, dummyCollection) {
var imageCount = inCollection.toList(1).length();
---toList(1),Is this one set up wrong?
With the original code, no matter how many images are in the collection, it's only going to return ‘1’.
And your comment after the code says: this is counting the number of images in the collection.
?????
var medoidMosaic = function(inCollection, dummyCollection) { var imageCount = inCollection.toList(1).length();
---toList(1),Is this one set up wrong? With the original code, no matter how many images are in the collection, it's only going to return ‘1’.
And your comment after the code says: this is counting the number of images in the collection. ?????