Creative Challenge
"Frog astronaut discovering a tiny moon village"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<filter id="starGlow">
<feGaussianBlur stdDeviation="2" result="starGlow"/>
<feMerge>
<feMergeNode in="starGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="linear-gradient(45, #0b0b2d, #1a1a4a)"/>
<!-- Stars -->
<g transform="translate(0,0)">
<circle cx="50" cy="50" r="1" fill="white" filter="url(#starGlow)"/>
<circle cx="80" cy="30" r="1" fill="white" filter="url(#starGlow)"/>
<circle cx="150" cy="80" r="1" fill="white" filter="url(#starGlow)"/>
<circle cx="200" cy="60" r="1" fill="white" filter="url(#starGlow)"/>
<circle cx="250" cy="100" r="1" fill="white" filter="url(#starGlow)"/>
</g>
<!-- Moon Surface -->
<rect x="20" y="180" width="260" height="120" fill="linear-gradient(0, #333, #555)" rx="50"/>
<circle cx="300" cy="200" r="30" fill="#444" opacity="0.3"/>
<circle cx="220" cy="220" r="25" fill="#444" opacity="0.3"/>
<circle cx="140" cy="200" r="20" fill="#444" opacity="0.3"/>
<!-- Moon Village -->
<g transform="translate(180,200)">
<rect x="0" y="0" width="60" height="80" fill="linear-gradient(45, #a1c4fd, #7f9ffd)" rx="10" filter="url(#glow)"/>
<rect x="-30" y="0" width="60" height="80" fill="linear-gradient(45, #a1c4fd, #7f9ffd)" rx="10" filter="url(#glow)"/>
<rect x="-60" y="0" width="60" height="80" fill="linear-gradient(45, #a1c4fd, #7f9ffd)" rx="10" filter="url(#glow)"/>
<circle cx="-30" cy="60" r="8" fill="#fff" filter="url(#starGlow)"/>
<circle cx="0" cy="60" r="8" fill="#fff" filter="url(#starGlow)"/>
<circle cx="-60" cy="60" r="8" fill="#fff" filter="url(#starGlow)"/>
</g>
<!-- Frog Astronaut -->
<g transform="translate(100,220)">
<path d="M0,0 Q20,10 40,0 Q60,-10 80,0 Q100,10 120,20 L120,40 L80,40 L40,40 L0,40 L0,20 Z" fill="linear-gradient(45, #8bc34a, #7cb342)" filter="url(#glow)"/>
<circle cx="60" cy="30" r="20" fill="linear-gradient(45, #1976d2, #1565c0)" filter="url(#glow)"/>
<circle cx="60" cy="30" r="15" fill="#212121" filter="url(#glow)"/>
<circle cx="50" cy="25" r="5" fill="#fff"/>
<circle cx="70" cy="25" r="5" fill="#fff"/>
<path d="M60,35 Q65,40 60,45" stroke="#ffd700" stroke-width="2" fill="#ffd700"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#0B3D91"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<linearGradient id="frogGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8BC34A"/>
<stop offset="100%" stop-color="#4CAF50"/>
</linearGradient>
<pattern id="moonPattern" x="0" y="0" width="0.1" height="0.1">
<circle cx="5" cy="5" r="1" fill="#B0BEC5"/>
<circle cx="10" cy="10" r="1" fill="#B0BEC5"/>
<circle cx="15" cy="5" r="1" fill="#B0BEC5"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<circle cx="150" cy="150" r="80" fill="url(#moonPattern)" stroke="#ECEFF1" stroke-width="5"/>
<ellipse cx="150" cy="100" rx="20" ry="30" fill="#F2F2F2"/>
<ellipse cx="150" cy="120" rx="15" ry="20" fill="#F2F2F2"/>
<rect x="140" y="130" width="20" height="10" fill="#F2F2F2"/>
<circle cx="160" cy="90" r="5" fill="#FFC107"/>
<circle cx="140" cy="90" r="5" fill="#FFC107"/>
<g transform="translate(100, 200)">
<ellipse cx="25" cy="25" rx="20" ry="30" fill="url(#frogGradient)"/>
<circle cx="20" cy="20" r="3" fill="#000"/>
<circle cx="30" cy="20" r="3" fill="#000"/>
<ellipse cx="25" cy="35" rx="5" ry="2" fill="#FFEB3B"/>
<rect x="20" y="40" width="10" height="20" fill="#F2F2F2"/>
<rect x="15" y="60" width="20" height="5" fill="#F2F2F2"/>
</g>
<circle cx="250" cy="80" r="10" fill="#FFC107"/>
<circle cx="240" cy="70" r="8" fill="#FFC107"/>
<circle cx="260" cy="70" r="8" fill="#FFC107"/>
<text x="250" y="100" font-size="8" fill="#FFF" text-anchor="middle">Village</text>
</svg>
Judge's Analysis
Player 2's submission better captures the idea of a 'Frog astronaut discovering a tiny moon village'.
The composition is clear with an identifiable frog character and a distinct representation of a village, enhancing visual appeal and narrative clarity.
Player 1's image, while atmospheric, lacks clear elements to convey the prompt effectively.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"Flamingo playing a saxophone under a giant mushroom"
"Cloud surfing cat with starry eyes above a candy cane forest"
"Floating cityscape on a giant tortoise shell"
"An owl wearing steampunk goggles, perched on a crescent moon"
"Flying cat in a tuxedo, holding an umbrella, soaring above giant cupcakes"
"Elon Musk as a cybernetic centaur exploring Mars"