get("#485") -- containsColor
-- Job: Distinguish two classes of images
-- Two images are supplied at once, one of each class.
-- Task is to find out if the two images are swapped or not.
--
-- input variables: img1, img2
-- output: a function returning true or false (swapped or no)
--
-- variables set by learner: color, class2sampled
return function()
flag1 = containsColor(img1, color)
flag2 = containsColor(img2, color)
if flag1 == flag2 then
return false
end
return flag1 == class2sampled
endBegan life as a copy of #484
test run test run with input download show line numbers
Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #486 |
| Snippet name: | Image distinguisher by randomly selected color [execution part] |
| Eternal ID of this version: | #486/1 |
| Text MD5: | c2f18e5a4437107d6b05a43cc64e5ec7 |
| Author: | stefan |
| Category: | |
| Type: | Lua code - Image distinction (executor) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2015-03-03 18:27:38 |
| Source code size: | 531 bytes / 19 lines |
| Pitched / IR pitched: | No / Yes |
| Views / Downloads: | 1035 / 224 |
| Referenced in: | #487 - Image distinguisher by randomly selected color [learner part] #3000382 - Answer for ferdie (>> t = 1, f = 0) #3000383 - Answer for funkoverflow (>> t=1, f=0 okay) |