banner_image ×
SeaArt AI Enterprise Version
Explore
More
Rankings
Blog
News
Guides
Download app
Swift AI
Official
Community
Train

There is a red circular object on a white tiled wall

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color,  outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius,  wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius,  wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari',  image) cv2.waitKey(0) cv2.destroyAllWindows() 

add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV.

Hope this solves the problem!

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw
chatIcon
Want to know my deep secrets?
Create AI Character
image

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color, outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius, wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius, wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari', image) cv2.waitKey(0) cv2.destroyAllWindows() add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV. Hope this solves the problem! import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw

avatar
G
GILSON4g
Prompts
Copy
import cv2 from PIL import Image , ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image . new('RGB' , (800 , 400) , (255 , 255 , 255)) draw = ImageDraw . Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255 , 0 , 0) body_position = (100 , 100 , 700 , 300) draw . rectangle(body_position , fill=body_color , outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0 , 0 , 0) wheel_radius = 50 wheel_1_position = (150 , 250) wheel_2_position = (650 , 250) wheel_3_position = (150 , 350) wheel_4_position = (650 , 350) draw . ellipse((wheel_1_position[0]-wheel_radius , wheel_1_position[1]-wheel_radius , wheel_1_position[0]+wheel_radius , wheel_1_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_2_position[0]-wheel_radius , wheel_2_position[1]-wheel_radius , wheel_2_position[0]+wheel_radius , wheel_2_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_3_position[0]-wheel_radius , wheel_3_position[1]-wheel_radius , wheel_3_position[0]+wheel_radius , wheel_3_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_4_position[0]-wheel_radius , wheel_4_position[1]-wheel_radius , wheel_4_position[0]+wheel_radius , wheel_4_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) # Save the generated image ferrari_img . save('ferrari . png') # Display the image generated using OpenCV image = cv2 . imread('ferrari . png') cv2 . imshow('Ferrari' , image) cv2 . waitKey(0) cv2 . destroyAllWindows() add the positions to draw the wheels 3 and 4 , so that the image of Ferrari has four wheels . The generated image will be saved as "ferrari . png" and displayed using OpenCV . Hope this solves the problem ! import cv2 from PIL import Image , ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image . new('RGB' , (800 , 400) , (255 , 255 , 255)) draw = ImageDraw . Draw(ferrari_img) # Draw
INFO
Prompts
import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color, outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius, wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius, wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari', image) cv2.waitKey(0) cv2.destroyAllWindows() add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV. Hope this solves the problem! import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw
Negative Prompts
(nsfw:1.5),cartoon, 3d, ((disfigured)), ((bad art)), ((deformed)), ((poorly drawn)), ((extra limbs)), ((close up)), blurry
CFG Scale
7
Steps
30
Sampler
Euler a
Seed
1695911765
Clip Skip
Image Size
1536 X 1024
Denoising Strength
0.2
Model
Dreamlike Diffusion 1.0
Generate
Size
1536X1024
Date
Jul 2, 2023
Mode
Default
Type
upscale
Checkpoint & LoRA
Dreamlike Diffusion 1.0
Checkpoint
Dreamlike Diffusion 1.0
Mk4 Toyota Supra
LORA
Mk4 Toyota Supra
0 comment
0
0
0

SeaArt Swift AI Apps

ai_video_generationimg
AI Video Generation

Unleash your imagination and let AI create visual wonders for you

face_swap_titleimg
Face Swap Online Free

Create funny or realistic face swap videos & photos in a snap

kiss_vidimg
AI Kissing Video Generator

Turn photos into realistic kissing videos in seconds.

fuse_anyoneimg
AI Image Fusion

Combine two images into new one stunning visual with AI Image Fusion.

changePersonimg
Change the Person in the Photo

Easily replace the person in any photo with AI.

cartoon_avatar_h1img
Cartoon Avatar Maker

Turn your photos into unique cartoon avatars instantly.

Explore More AI Apps 

Explore Related

ControlNet
avatar
Z
Ziba K.
0
0
ControlNet
avatar
Р
Роман Март
0
0
ControlNet
avatar
M
Mor XDei ff
0
0
ControlNet
avatar
W
walter santos
0
0
ControlNet
avatar
た
たいたたた
0
0
ControlNet
avatar
Z
Ziba K.
0
1
ControlNet
avatar
K
Kurusu
0
0
ControlNet
avatar
V
vnnnn
0
0
ControlNet
avatar
ド
ドット
0
0
ControlNet
avatar
Y
Yakir Segev
0
0
ControlNet
avatar
D
Designer24898
1
0
ControlNet
avatar
A
AP
0
0
ControlNet
avatar
B
Betão Itajubá
1
0
ControlNet
avatar
A
arman graphics
0
0
ControlNet
avatar
5
59YKHD
0
0
ControlNet
avatar
R
robinhood nine
0
0
ControlNet
avatar
D
Designer80638
0
0
ControlNet
avatar
H
Hasna Ameer Ali
0
0
ControlNet
avatar
R
Ri Rishad
1
1
ControlNet
avatar
K
Keeto 901
1
1
ControlNet
avatar
月
月
1
0
ControlNet
avatar
D
Daniel Just Play
0
0
ControlNet
avatar
P
avatar_frame
phaser112
0
1
ControlNet
avatar
M
Mateo Nayrolles
0
0
ControlNet
avatar
K
keider camargo
1
1
ControlNet
avatar
M
Madeline Monrroy Bravo
0
0
ControlNet
avatar
A
Andi Siti Nur Azizah
0
0
ControlNet
avatar
ま
avatar_frame
まんてんクロ
1
1
ControlNet
avatar
D
Daniel Just Play
0
0
ControlNet
logo
English
Application
Create Image AI Characters Swift AI Model Training Canvas AI Apps Workflow
About
Studio Rankings AI Chat AI Blog AI News
Help
Guides Customer Service
Get App
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Follow Us
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Terms
Privacy 特定商取引法 資金決済法に基づく表示
Event Center
Rankings
Blog
News
Copyright Policy Terms Privacy 特定商取引法 資金決済法に基づく表示
Guides
Feedback
Download app
More