Creative Challenge
"Lamp post with a glowing jellyfish bulb"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Lamp post -->
<rect x="120" y="50" width="50" height="200" fill="#5086c1" rx="5" />
<rect x="120" y="250" width="50" height="10" fill="#87a2b5" rx="2" />
<circle cx="145" cy="50" r="10" fill="#87a2b5" />
<!-- Glowing jellyfish bulb -->
<defs>
<radialGradient id="glowGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
<stop offset="0%" stop-color="#87ceeb" stop-opacity="0.5" />
<stop offset="100%" stop-color="#43a047" stop-opacity="1" />
</radialGradient>
</defs>
<circle cx="145" cy="150" r="50" fill="url(#glowGradient)" />
<!-- Jellyfish details -->
<path d="M 145 100 Q 120 80 170 120" stroke="#5086c1" stroke-width="5" fill="none" />
<path d="M 145 100 Q 170 80 120 120" stroke="#5086c1" stroke-width="5" fill="none" />
<circle cx="145" cy="120" r="10" fill="#87a2b5" />
<circle cx="145" cy="180" r="10" fill="#87a2b5" />
<!-- Glow effect -->
<circle cx="145" cy="150" r="70" stroke="#87ceeb" stroke-width="20" fill="none" opacity="0.5" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(150,150)">
<!-- Lamp post -->
<rect x="-10" y="-150" width="20" height="300" fill="#333" rx="5"/>
<rect x="-30" y="140" width="60" height="60" fill="#222" rx="15"/>
<!-- Jellyfish bulb -->
<g transform="translate(0,-120)">
<!-- Jellyfish body -->
<circle cx="0" cy="0" r="40" fill="url(#jellyfishGradient)"/>
<animate attributeName="r" from="40" to="45" dur="1s" repeatCount="indefinite" begin="0s" />
<!-- Jellyfish tentacles -->
<path d="M-50,-20 Q-40,-30 -30,-40" stroke="#66B3FF" fill="none" stroke-width="2"/>
<path d="M50,-20 Q40,-30 30,-40" stroke="#66B3FF" fill="none" stroke-width="2"/>
<path d="M-30,30 Q-20,20 -10,10" stroke="#66B3FF" fill="none" stroke-width="2"/>
<path d="M30,30 Q20,20 10,10" stroke="#66B3FF" fill="none" stroke-width="2"/>
<!-- Light rays -->
<g opacity="0.3">
<line x1="0" y1="-60" x2="0" y2="-100" stroke="#9370DB" stroke-width="2">
<animate attributeName="opacity" from="0" to="1" dur="1s" repeatCount="indefinite" begin="0.5s"/>
</line>
<line x1="-30" y1="-60" x2="-50" y2="-100" stroke="#9370DB" stroke-width="2">
<animate attributeName="opacity" from="0" to="1" dur="1s" repeatCount="indefinite" begin="0.25s"/>
</line>
<line x1="30" y1="-60" x2="50" y2="-100" stroke="#9370DB" stroke-width="2">
<animate attributeName="opacity" from="0" to="1" dur="1s" repeatCount="indefinite" begin="0.75s"/>
</line>
</g>
</g>
<!-- Floating particles -->
<g opacity="0.5">
<circle cx="-40" cy="-80" r="3" fill="#66B3FF">
<animate attributeName="cy" from="-80" to="-70" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="40" cy="-80" r="3" fill="#66B3FF">
<animate attributeName="cy" from="-80" to="-70" dur="2s" repeatCount="indefinite" begin="0.5s"/>
</circle>
</g>
</g>
<defs>
<radialGradient id="jellyfishGradient" cx="0" cy="0" r="40">
<stop offset="0%" stop-color="#66B3FF"/>
<stop offset="100%" stop-color="#4169E1"/>
</radialGradient>
</defs>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of a 'lamp post with a glowing jellyfish bulb' by clearly depicting a lamp post structure with a jellyfish-like bulb at the top.
The design is simple yet coherent, with a clear differentiation between the post and the bulb.
Player 1's image, while creative, lacks clarity and structure, making it difficult to distinguish the lamp post and jellyfish elements.
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
"An astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Peacock with clockwork feathers in a digital sunset"