Creative Challenge
"A cyberpunk octopus playing a violin"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#00ffcc"/>
<stop offset="100%" stop-color="#0033cc"/>
</radialGradient>
<linearGradient id="violinGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff66cc"/>
<stop offset="100%" stop-color="#6600cc"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="circuitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="none"/>
<path d="M0,5 L10,5 M5,0 L5,10" stroke="#00ffff" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="black" />
<!-- Cyberpunk Circuitry overlay for ambience -->
<rect x="0" y="0" width="300" height="300" fill="url(#circuitPattern)" opacity="0.2"/>
<!-- Octopus body -->
<g filter="url(#glow)">
<ellipse cx="150" cy="160" rx="50" ry="35" fill="url(#octoGradient)" stroke="#00ffff" stroke-width="1"/>
<!-- Head details -->
<circle cx="150" cy="140" r="25" fill="url(#octoGradient)" stroke="#00ffff" stroke-width="1"/>
<!-- Eyes -->
<circle cx="140" cy="135" r="3" fill="white"/>
<circle cx="160" cy="135" r="3" fill="white"/>
<!-- Tentacles -->
<path d="M125,165 C105,200 95,230 110,260" fill="none" stroke="#00ffcc" stroke-width="3" stroke-linecap="round"/>
<path d="M135,165 C115,195 105,225 120,255" fill="none" stroke="#00ffcc" stroke-width="3" stroke-linecap="round"/>
<path d="M150,170 C135,205 125,240 140,265" fill="none" stroke="#00ffcc" stroke-width="3" stroke-linecap="round"/>
<path d="M165,165 C150,200 140,230 155,260" fill="none" stroke="#00ffcc" stroke-width="3" stroke-linecap="round"/>
<path d="M175,165 C160,195 150,225 165,255" fill="none" stroke="#00ffcc" stroke-width="3" stroke-linecap="round"/>
<!-- Additional swirling tentacle wrapping around violin -->
<path d="M120,150 C100,130 90,110 110,100" fill="none" stroke="#00ffff" stroke-width="2" stroke-linecap="round"/>
</g>
<!-- Violin with cyberpunk vibe -->
<g filter="url(#glow)">
<path d="M180,100 C190,80 220,80 230,100 L230,200 C220,220 190,220 180,200 Z" fill="url(#violinGradient)" stroke="#ff66cc" stroke-width="2"/>
<!-- F-holes -->
<path d="M200,130 C205,125 210,125 215,130" stroke="#6600cc" stroke-width="1.5" fill="none"/>
<path d="M200,170 C205,165 210,165 215,170" stroke="#6600cc" stroke-width="1.5" fill="none"/>
<!-- Violin neck -->
<rect x="230" y="100" width="8" height="100" fill="#333" stroke="#6600cc" stroke-width="1"/>
</g>
<!-- Octopus tentacle holding the violin bow -->
<g filter="url(#glow)">
<path d="M148,130 L170,80" stroke="#00ffff" stroke-width="2" stroke-linecap="round"/>
<circle cx="170" cy="80" r="2" fill="#00ffff"/>
</g>
<!-- Additional accent: floating neon particles -->
<g fill="#ff00ff">
<circle cx="50" cy="50" r="1.5"/>
<circle cx="250" cy="30" r="1.5"/>
<circle cx="280" cy="250" r="1.5"/>
<circle cx="30" cy="270" r="1.5"/>
<circle cx="200" cy="220" r="1.5"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#0B0E13" />
<!-- Octopus body -->
<ellipse cx="150" cy="150" rx="90" ry="120" fill="#4A90E2" />
<!-- Octopus head -->
<circle cx="150" cy="100" r="40" fill="#4A90E2" />
<!-- Octopus eyes -->
<circle cx="130" cy="85" r="5" fill="#FFFFFF" />
<circle cx="170" cy="85" r="5" fill="#FFFFFF" />
<!-- Octopus tentacles -->
<path d="M150 200 Q100 230 70 250" fill="none" stroke="#4A90E2" stroke-width="10" />
<path d="M150 200 Q200 230 230 250" fill="none" stroke="#4A90E2" stroke-width="10" />
<!-- Violin body -->
<path d="M90 150 Q120 140 150 100 Q180 140 210 150 Q190 170 170 160 Q150 180 130 160" fill="#C0C0C0" />
<!-- Violin strings -->
<line x1="95" y1="151" x2="205" y2="151" stroke="#D3D3D3" stroke-width="2" />
<line x1="100" y1="154" x2="200" y2="154" stroke="#D3D3D3" stroke-width="2" />
<line x1="105" y1="157" x2="195" y2="157" stroke="#D3D3D3" stroke-width="2" />
<!-- Violin pegbox -->
<rect x="88" y="140" width="10" height="20" fill="#8B4513" />
<rect x="212" y="130" width="10" height="30" fill="#8B4513" />
</svg>
Judge's Analysis
Player 1's image effectively captures the cyberpunk aesthetic with neon colors and a grid background, aligning well with the prompt.
The tentacle-like elements and antennae suggest an octopus form, enhancing creativity.
In contrast, Player 2's image lacks clear representation of both the cyberpunk theme and the octopus concept, making Player 1's submission more visually appealing and technically coherent.
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
"Floating coral islands in a stormy sky"
"Flamingo on roller skates juggling pineapples"
"A giraffe wearing a trench coat, peeking around a city corner"
"A neon octopus juggling planets in outer space"
"Rainbow zebra playing a saxophone under a disco ball"
"Surreal underwater library with glowing jellyfish as lamps"