Creative Challenge
"Frog in a vintage scuba suit dancing with jellyfish"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#grad1)" />
<g transform="translate(100, 150)">
<circle cx="0" cy="0" r="20" fill="green" />
<circle cx="0" cy="-30" r="10" fill="white" />
<circle cx="5" cy="-30" r="2" fill="black" />
<circle cx="-5" cy="-30" r="2" fill="black" />
<ellipse cx="0" cy="20" rx="20" ry="10" fill="green" />
<path d="M -15 30 C -30 60, 30 60, 15 30" stroke="green" stroke-width="5" fill="none" />
</g>
<g transform="translate(200, 150)">
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="15" r="5" fill="white" />
<circle cx="0" cy="15" r="3" fill="black" />
<path d="M -15 0 C -20 30, 20 30, 15 0" stroke="white" stroke-width="3" fill="none" />
<path d="M -15 -20 C -20 -10, 20 -10, 15 -20" stroke="white" stroke-width="3" fill="none" />
</g>
<g transform="translate(150, 250)">
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="15" r="5" fill="white" />
<circle cx="0" cy="15" r="3" fill="black" />
<path d="M -15 0 C -20 30, 20 30, 15 0" stroke="white" stroke-width="3" fill="none" />
<path d="M -15 -20 C -20 -10, 20 -10, 15 -20" stroke="white" stroke-width="3" fill="none" />
</g>
<g transform="translate(50, 50)">
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="15" r="5" fill="white" />
<circle cx="0" cy="15" r="3" fill="black" />
<path d="M -15 0 C -20 30, 20 30, 15 0" stroke="white" stroke-width="3" fill="none" />
<path d="M -15 -20 C -20 -10, 20 -10, 15 -20" stroke="white" stroke-width="3" fill="none" />
</g>
<path d="M 50 150 C 50 120, 100 120, 100 150 S 150 180, 150 150" stroke="blue" stroke-width="3" fill="none" />
<path d="M 100 50 C 100 20, 150 20, 150 50 S 200 80, 200 50" stroke="blue" stroke-width="3" fill="none" />
<path d="M 200 150 C 200 120, 250 120, 250 150 S 300 180, 300 150" stroke="blue" stroke-width="3" fill="none" />
<path d="M 100 250 C 100 220, 150 220, 150 250 S 200 280, 200 250" stroke="blue" stroke-width="3" fill="none" />
<g transform="translate(100, 100)">
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="15" r="5" fill="white" />
<circle cx="0" cy="15" r="3" fill="black" />
<path d="M -15 0 C -20 30, 20 30, 15 0" stroke="white" stroke-width="3" fill="none" />
<path d="M -15 -20 C -20 -10, 20 -10, 15 -20" stroke="white" stroke-width="3" fill="none" />
</g>
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="15" r="5" fill="white" />
<circle cx="0" cy="15" r="3" fill="black" />
<path d="M -15 0 C -20 30, 20 30, 15 0" stroke="white" stroke-width="3" fill="none" />
<path d="M -15 -20 C -20 -10, 20 -10, 15 -20" stroke="white" stroke-width="3" fill="none" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="rgb(255, 255, 255);alpha(1)" />
<stop offset="100%" style="rgb(0, 255, 127);alpha(1)" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="rgb(255, 255, 255);alpha(1)" />
<stop offset="100%" style="rgb(255, 153, 0);alpha(1)" />
</linearGradient>
<pattern id="bubbles" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
<circle cx="25" cy="25" r="20" fill="white" stroke="lightblue" stroke-width="1" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#grad1)" />
<!-- Water effect -->
<rect x="0" y="0" width="300" height="300" mask="url(#mask)" fill="rgba(255,255,255,0.1)" />
<filter id="waveFilter">
<feGaussianBlur stdDeviation="5" result="gaussianBlur" />
</filter>
<mask id="mask">
<rect x="0" y="0" width="300" height="300" result="rect" fill="white" />
<feTurbulence type="fractalNoise" baseFrequency="0.005" numOctaves="2" result="noise" />
<feDiffuseLightingSurface scale="1" result="lighting" />
<feComposite in="noise" in2="lighting" operator="arithmetic" result="composite" />
</mask>
<!-- Frog -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="30" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
<circle cx="0" cy="-40" r="20" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
<path d="M 0 -50 L -20 -70 L 20 -70 L 0 -50" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
<path d="M 0 -50 L 20 -70 L -20 -70 L 0 -50" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
<circle cx="-15" cy="-50" r="5" fill="black" />
<circle cx="15" cy="-50" r="5" fill="black" />
<path d="M -30 -30 L -20 -20 L -10 -30 L -30 -30" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
<path d="M 30 -30 L 20 -20 L 10 -30 L 30 -30" fill="url(#grad2)" stroke="darkgrey" stroke-width="2" />
</g>
<!-- Jellyfish 1 -->
<g transform="translate(100, 100) rotate(45)">
<ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
<path d="M 0 0 Q 20 20, 0 40" stroke="lightblue" stroke-width="2" fill="none" />
<path d="M 0 0 Q -20 20, 0 40" stroke="lightblue" stroke-width="2" fill="none" />
<circle cx="0" cy="-30" r="10" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
</g>
<!-- Jellyfish 2 -->
<g transform="translate(200, 150) rotate(135)">
<ellipse cx="0" cy="0" rx="25" ry="35" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
<path d="M 0 0 Q 25 25, 0 50" stroke="lightblue" stroke-width="2" fill="none" />
<path d="M 0 0 Q -25 25, 0 50" stroke="lightblue" stroke-width="2" fill="none" />
<circle cx="0" cy="-35" r="12" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
</g>
<!-- Jellyfish 3 -->
<g transform="translate(50, 200) rotate(315)">
<ellipse cx="0" cy="0" rx="15" ry="25" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
<path d="M 0 0 Q 15 15, 0 30" stroke="lightblue" stroke-width="2" fill="none" />
<path d="M 0 0 Q -15 15, 0 30" stroke="lightblue" stroke-width="2" fill="none" />
<circle cx="0" cy="-25" r="8" fill="url(#grad1)" stroke="lightblue" stroke-width="2" />
</g>
<!-- Bubbles -->
<rect x="0" y="0" width="300" height="300" fill="url(#bubbles)" opacity="0.3" />
</svg>
Judge's Analysis
Player 1's image is more vibrant and successfully captures the whimsical idea of a frog in a vintage scuba suit dancing with jellyfish.
The use of bright colors and clear shapes makes the scene lively and engaging.
While Player 2's image has a more abstract approach, it lacks the clarity and adherence to the prompt seen in Player 1's submission.
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
"Levitation tea party with floating teacups and pastries"
"Moonlit snail in a top hat juggling stars"
"Rainbow octopus in a Victorian tea party setting"
"Dolphin playing chess with a robot atop an iceberg"
"Flamingo on a skateboard, wearing sunglasses and sipping a smoothie"
"Surreal owl with mechanical gears for eyes"