banner_image ×
SeaArt AI Empresa

Import matplotlib.pyplot as plt import numpy as np # Function to draw an anime

import matplotlib.pyplot as plt
import numpy as np

# Function to draw an anime style cat def draw_anime_cat():
    fig, ax = plt.subplots(figsize=(6,6))

    # cat head = plt.Circle((0.5, 0.5), 0.3, color='lightgrey', ec='black')
    ax.add_patch(head)
    
    # Orelhas do gato
    left_ear = plt.Polygon([[0.35, 0.75], [0.3, 0.9], [0.45, 0.85]], closed=True, color='lightgrey', ec='black')
    right_ear = plt.Polygon([[0.65, 0.75], [0.7, 0.9], [0.55, 0.85]], closed=True, color='lightgrey', ec='black')
    ax.add_patch(left_ear)
    ax.add_patch(right_ear)
    
    # Olhos do gato estilo anime
    left_eye = plt.Circle((0.4, 0.55), 0.08, color='white', ec='black')
    right_eye = plt.Circle((0.6, 0.55), 0.08, color='white', ec='black')
    ax.add_patch(left_eye)
    ax.add_patch(right_eye)
    left_pupil = plt.Circle((0.4, 0.55), 0.03, color='black')
    right_pupil = plt.Circle((0.6, 0.55), 0.03, color='black')
    ax.add_patch(left_pupil)
    ax.add_patch(right_pupil)

    # Reflexos nos olhos
    left_reflection = plt.Circle((0.41, 0.57), 0.015, color='white')
    right_reflection = plt.Circle((0.61, 0.57), 0.015, color='white')
    ax.add_patch(left_reflection)
    ax.add_patch(right_reflection)
    
    # Nariz do gato
    nose = plt.Polygon([[0.48, 0.45], [0.52, 0.45], [0.5, 0.42]], closed=True, color='pink', ec='black')
    ax.add_patch(nose)
    
    # Boca do gato estilo anime
    mouth_left = plt.Line2D([0.48, 0.47], [0.42, 0.40], color='black')
    mouth_right = plt.Line2D([0.52, 0.53], [0.42, 0.40], color='black')
    mouth_bottom = plt.Line2D([0.47, 0.53], [0.40, 0.40], color='black')
    ax.add_line(mouth_left)
    ax.add_line(mouth_right)
    ax.add_line(mouth_bottom)
    
    # Bigodes do gato
    whiskers_left = [plt.Line2D([0.35, 0.45], [0.5, 0.45], color='black'),
                     plt.Line2D([0.35, 0.45], [0.4, 0.42], color='black'),
                     plt.Line2D([0.35, 0.45], [0.6, 0.48], color='black')]
    
    whiske
chatIcon
Quer conhecer meus segredos mais profundos?
Criar personagem de IA
image

import matplotlib.pyplot as plt import numpy as np # Function to draw an anime style cat def draw_anime_cat(): fig, ax = plt.subplots(figsize=(6,6)) # cat head = plt.Circle((0.5, 0.5), 0.3, color='lightgrey', ec='black') ax.add_patch(head) # Orelhas do gato left_ear = plt.Polygon([[0.35, 0.75], [0.3, 0.9], [0.45, 0.85]], closed=True, color='lightgrey', ec='black') right_ear = plt.Polygon([[0.65, 0.75], [0.7, 0.9], [0.55, 0.85]], closed=True, color='lightgrey', ec='black') ax.add_patch(left_ear) ax.add_patch(right_ear) # Olhos do gato estilo anime left_eye = plt.Circle((0.4, 0.55), 0.08, color='white', ec='black') right_eye = plt.Circle((0.6, 0.55), 0.08, color='white', ec='black') ax.add_patch(left_eye) ax.add_patch(right_eye) left_pupil = plt.Circle((0.4, 0.55), 0.03, color='black') right_pupil = plt.Circle((0.6, 0.55), 0.03, color='black') ax.add_patch(left_pupil) ax.add_patch(right_pupil) # Reflexos nos olhos left_reflection = plt.Circle((0.41, 0.57), 0.015, color='white') right_reflection = plt.Circle((0.61, 0.57), 0.015, color='white') ax.add_patch(left_reflection) ax.add_patch(right_reflection) # Nariz do gato nose = plt.Polygon([[0.48, 0.45], [0.52, 0.45], [0.5, 0.42]], closed=True, color='pink', ec='black') ax.add_patch(nose) # Boca do gato estilo anime mouth_left = plt.Line2D([0.48, 0.47], [0.42, 0.40], color='black') mouth_right = plt.Line2D([0.52, 0.53], [0.42, 0.40], color='black') mouth_bottom = plt.Line2D([0.47, 0.53], [0.40, 0.40], color='black') ax.add_line(mouth_left) ax.add_line(mouth_right) ax.add_line(mouth_bottom) # Bigodes do gato whiskers_left = [plt.Line2D([0.35, 0.45], [0.5, 0.45], color='black'), plt.Line2D([0.35, 0.45], [0.4, 0.42], color='black'), plt.Line2D([0.35, 0.45], [0.6, 0.48], color='black')] whiske

avatar
F
Francinete Ribeiro
Generation Data
Registro
Prompts
Copiar prompts
import matplotlib . pyplot as plt import numpy as np # Function to draw an anime style cat def draw_anime_cat(): fig , ax = plt . subplots(figsize=(6 , 6)) # cat head = plt . Circle((0 . 5 , 0 . 5) , 0 . 3 , color='lightgrey' , ec='black') ax . add_patch(head) # Orelhas do gato left_ear = plt . Polygon([[0 . 35 , 0 . 75] , [0 . 3 , 0 . 9] , [0 . 45 , 0 . 85]] , closed=True , color='lightgrey' , ec='black') right_ear = plt . Polygon([[0 . 65 , 0 . 75] , [0 . 7 , 0 . 9] , [0 . 55 , 0 . 85]] , closed=True , color='lightgrey' , ec='black') ax . add_patch(left_ear) ax . add_patch(right_ear) # Olhos do gato estilo anime left_eye = plt . Circle((0 . 4 , 0 . 55) , 0 . 08 , color='white' , ec='black') right_eye = plt . Circle((0 . 6 , 0 . 55) , 0 . 08 , color='white' , ec='black') ax . add_patch(left_eye) ax . add_patch(right_eye) left_pupil = plt . Circle((0 . 4 , 0 . 55) , 0 . 03 , color='black') right_pupil = plt . Circle((0 . 6 , 0 . 55) , 0 . 03 , color='black') ax . add_patch(left_pupil) ax . add_patch(right_pupil) # Reflexos nos olhos left_reflection = plt . Circle((0 . 41 , 0 . 57) , 0 . 015 , color='white') right_reflection = plt . Circle((0 . 61 , 0 . 57) , 0 . 015 , color='white') ax . add_patch(left_reflection) ax . add_patch(right_reflection) # Nariz do gato nose = plt . Polygon([[0 . 48 , 0 . 45] , [0 . 52 , 0 . 45] , [0 . 5 , 0 . 42]] , closed=True , color='pink' , ec='black') ax . add_patch(nose) # Boca do gato estilo anime mouth_left = plt . Line2D([0 . 48 , 0 . 47] , [0 . 42 , 0 . 40] , color='black') mouth_right = plt . Line2D([0 . 52 , 0 . 53] , [0 . 42 , 0 . 40] , color='black') mouth_bottom = plt . Line2D([0 . 47 , 0 . 53] , [0 . 40 , 0 . 40] , color='black') ax . add_line(mouth_left) ax . add_line(mouth_right) ax . add_line(mouth_bottom) # Bigodes do gato whiskers_left = [plt . Line2D([0 . 35 , 0 . 45] , [0 . 5 , 0 . 45] , color='black') , plt . Line2D([0 . 35 , 0 . 45] , [0 . 4 , 0 . 42] , color='black') , plt . Line2D([0 . 35 , 0 . 45] , [0 . 6 , 0 . 48] , color='black')] whiske
INFO
Prompts
import matplotlib.pyplot as plt import numpy as np # Function to draw an anime style cat def draw_anime_cat(): fig, ax = plt.subplots(figsize=(6,6)) # cat head = plt.Circle((0.5, 0.5), 0.3, color='lightgrey', ec='black') ax.add_patch(head) # Orelhas do gato left_ear = plt.Polygon([[0.35, 0.75], [0.3, 0.9], [0.45, 0.85]], closed=True, color='lightgrey', ec='black') right_ear = plt.Polygon([[0.65, 0.75], [0.7, 0.9], [0.55, 0.85]], closed=True, color='lightgrey', ec='black') ax.add_patch(left_ear) ax.add_patch(right_ear) # Olhos do gato estilo anime left_eye = plt.Circle((0.4, 0.55), 0.08, color='white', ec='black') right_eye = plt.Circle((0.6, 0.55), 0.08, color='white', ec='black') ax.add_patch(left_eye) ax.add_patch(right_eye) left_pupil = plt.Circle((0.4, 0.55), 0.03, color='black') right_pupil = plt.Circle((0.6, 0.55), 0.03, color='black') ax.add_patch(left_pupil) ax.add_patch(right_pupil) # Reflexos nos olhos left_reflection = plt.Circle((0.41, 0.57), 0.015, color='white') right_reflection = plt.Circle((0.61, 0.57), 0.015, color='white') ax.add_patch(left_reflection) ax.add_patch(right_reflection) # Nariz do gato nose = plt.Polygon([[0.48, 0.45], [0.52, 0.45], [0.5, 0.42]], closed=True, color='pink', ec='black') ax.add_patch(nose) # Boca do gato estilo anime mouth_left = plt.Line2D([0.48, 0.47], [0.42, 0.40], color='black') mouth_right = plt.Line2D([0.52, 0.53], [0.42, 0.40], color='black') mouth_bottom = plt.Line2D([0.47, 0.53], [0.40, 0.40], color='black') ax.add_line(mouth_left) ax.add_line(mouth_right) ax.add_line(mouth_bottom) # Bigodes do gato whiskers_left = [plt.Line2D([0.35, 0.45], [0.5, 0.45], color='black'), plt.Line2D([0.35, 0.45], [0.4, 0.42], color='black'), plt.Line2D([0.35, 0.45], [0.6, 0.48], color='black')] whiske
Etiqueta negativa
verybadimagenegative_v1.3, ng_deepnegative_v1_75t, (ugly face:0.8),cross-eyed,sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), skin spots, acnes, skin blemishes, bad anatomy, DeepNegative, facing away, tilted head, {Multiple people}, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worstquality, low quality, normal quality, jpegartifacts, signature, watermark, username, blurry, bad feet, cropped, poorly drawn hands, poorly drawn face, mutation, deformed, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, extra fingers, fewer digits, extra limbs, extra arms,extra legs, malformed limbs, fused fingers, too many fingers, long neck, cross-eyed,mutated hands, polar lowres, bad body, bad proportions, gross proportions, text, error, missing fingers, missing arms, missing legs, extra digit, extra arms, extra leg, extra foot, ((repeating hair))
Escala CFG
7
Passos
20
Coletor
DPM++ 2M Karras
Semente
1605820666
Clip Skip
1
Tamanho de Imagem
683 X 1024
Modelo
Realisian
Criar
Tamanho
768X1024
Data
Jun 16, 2024
Modo
Padrão
Tipo
upscale
Checkpoint & LoRA
Checkpoint
Realisian
#Realista
#Fotografia
comentário(s)
0
0
0

Apps de IA Rápida de SeaArt

ai_video_generationimg
Geração de vídeos com IA

Libere sua imaginação e deixe a IA criar maravilhas visuais para você

face_swap_titleimg
Troca de rosto online grátis

Crie rapidamente vídeos e fotos de troca de rosto divertidos e realistas

ghibli_filter_h1img
filtro do Studio Ghibli

Transforme qualquer foto em arte única no estilo Ghibli com apenas um clique.

changePersonimg
Alterar a pessoa na foto

Substitua facilmente a pessoa em qualquer foto com IA.

gender_swapimg
Troca de gênero

Troque gêneros em fotos e vídeos com o trocador de gênero da SeaArt alimentado por IA. Aproveite transformações divertidas e realistas sem esforço, grátis online!

anime2realityimg
Do anime para a realidade

Traga instantaneamente seus personagens de anime favoritos à vida.

Explore mais aplicativos AI 

Recomendações relacionadas

ControlNet
Exclusivo
avatar
B
avatar_frame
BlueBird
0
0
ControlNet
Exclusivo
avatar
伸
avatar_frame
伸也
0
0
ControlNet
Exclusivo
avatar
L
Lucas Lima Cavalcanti
0
0
ControlNet
Exclusivo
avatar
R
ra pu
0
0
ControlNet
Exclusivo
avatar
白
白麗
1
3
ControlNet
Exclusivo
avatar
さ
さろ
0
0
ControlNet
Exclusivo
avatar
ペ
ペンドラゴン
0
0
ControlNet
Exclusivo
avatar
H
Hosni Mhamdi
0
0
ControlNet
Exclusivo
avatar
T
tin18688783
0
1
ControlNet
Exclusivo
avatar
Н
Наташа Милеева
0
0
ControlNet
Exclusivo
avatar
T
the king of cool
1
2
ControlNet
Exclusivo
avatar
T
Tsuyoshi
1
1
ControlNet
Exclusivo
avatar
J
Jerome Koppen
0
0
ControlNet
Exclusivo
avatar
L
lawsuit
0
0
ControlNet
Exclusivo
avatar
B
bakuchou
0
0
ControlNet
Exclusivo
avatar
V
Vasco1804
0
0
ControlNet
Exclusivo
avatar
A
avatar_frame
Ace
0
0
ControlNet
Exclusivo
avatar
R
rajesh galsar
0
0
ControlNet
Exclusivo
avatar
T
tin18688783
2
0
ControlNet
Exclusivo
avatar
A
avatar_frame
AyuDT
0
0
ControlNet
Exclusivo
avatar
霞
avatar_frame
霞杏
0
2
ControlNet
Exclusivo
avatar
D
Designer69024
0
0
ControlNet
Exclusivo
avatar
A
Ano Email
0
0
ControlNet
Exclusivo
avatar
L
Lana
0
1
ControlNet
Exclusivo
avatar
S
seeeeeeeeed
0
0
ControlNet
Exclusivo
avatar
白
白麗
1
2
ControlNet
Exclusivo
avatar
Y
avatar_frame
yukip
0
0
ControlNet
Exclusivo
avatar
C
avatar_frame
cuoo0591
0
0
ControlNet
Exclusivo
avatar
J
Junior Ribeiro
0
1
ControlNet
Exclusivo
avatar
佐
佐藤みさき
0
0
ControlNet
Exclusivo
avatar
V
Vanessa Merces
0
0
ControlNet
Exclusivo
avatar
A
Antofffka666
0
1
ControlNet
Exclusivo
avatar
A
AINA
0
0
ControlNet
logo
Português
Aplicativo
Criar imagem Personagens AI Swift AI Treinamento de modelo Canvas Ferramenta rápida Fluxo de Trabalho
Criado {time}
Estúdio Classificação Bate-papo IA AI blog AI notícias
Ajuda
Guias Atendimento ao Cliente
Obter aplicativo
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Siga-nos
iconiconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Termos
Política de Privacidade 特定商取引法 資金決済法に基づく表示
Mais