banner_image ×
SeaArt AI บริษัท

A woman in a futuristic outfit standing on a cliff with a gun

import numpy as np
import matplotlib.pyplot as plt 
from mpl_toolkits.mplot3d import Axes3D  
# 参数设置
n = 1
pi = np.pi  
# 时空坐标计算
def spacetime_coordinates(t):
    r = n / pi * t
    x = r * np.cos(t) * np.cos(t)
    y = r * np.sin(t) * np.cos(t)
    z = r * np.sin(t)
    w = r
    return x, y, z, w
  # 量子场与概率 
def quantum_field(t, m):
    u= 0
  # 假设u_n-1为0,可根据实际情况修改
    u = u + np.sin(t + m)
    return u
  # 概率分布 
def probability_distribution():
    m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi]
    probabilities = [0.125, 0.125, 0.125, 0.125, 0.5]
    m = np.random.choice(m_values + [0], p=probabilities)
    return m
  # 计算时空坐标和量子场值
    t_values = np.linspace(0, 2 * pi, 100)
    coordinates = [spacetime_coordinates(t) for t in t_values]
    quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values]
  # 绘制3D曲面 def plot_3d_surface(w_value):
    fig = plt.figure()
    ax = fig.add_subplot(111, projection='3d')
    x_values = []
    y_values = []
    z_values = []
    u_values = []
    for coord, field in zip(coordinates, quantum_fields):
             x, y, z, w = coord
    if w == w_value:
             x_values.append(x)
             y_values.append(y)
             z_values.append(z)
             u_values.append(field)
             ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis')
             ax.set_xlabel('X')
             ax.set_ylabel('Y')
             ax.set_zlabel('Z')
             ax.set_title(f'3D Surface for w = {w_value}')
             plt.show()
             plot_3d_surface(1)
             plot_3d_surface(100)
             input("Press any key to exit")
chatIcon
มีบางอย่างที่บอกได้แค่ที่นี่ เตรียมตัวพร้อมหรือยัง?
สร้างตัวละคร AI
image

import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D  # 参数设置 n = 1 pi = np.pi  # 时空坐标计算 def spacetime_coordinates(t):     r = n / pi * t     x = r * np.cos(t) * np.cos(t)     y = r * np.sin(t) * np.cos(t)     z = r * np.sin(t)     w = r     return x, y, z, w   # 量子场与概率 def quantum_field(t, m):     u= 0   # 假设u_n-1为0,可根据实际情况修改     u = u + np.sin(t + m)     return u   # 概率分布 def probability_distribution():     m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi]     probabilities = [0.125, 0.125, 0.125, 0.125, 0.5]     m = np.random.choice(m_values + [0], p=probabilities)     return m   # 计算时空坐标和量子场值     t_values = np.linspace(0, 2 * pi, 100)     coordinates = [spacetime_coordinates(t) for t in t_values]     quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values]   # 绘制3D曲面 def plot_3d_surface(w_value):     fig = plt.figure()     ax = fig.add_subplot(111, projection='3d')     x_values = []     y_values = []     z_values = []     u_values = []     for coord, field in zip(coordinates, quantum_fields):              x, y, z, w = coord     if w == w_value:              x_values.append(x)              y_values.append(y)              z_values.append(z)              u_values.append(field)              ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis')              ax.set_xlabel('X')              ax.set_ylabel('Y')              ax.set_zlabel('Z')              ax.set_title(f'3D Surface for w = {w_value}')              plt.show()              plot_3d_surface(1)              plot_3d_surface(100)              input("Press any key to exit")

avatar
P
pang ping
คำพรอมต์
คัดลอกคำพรอมต์
import numpy as np import matplotlib . pyplot as plt from mpl_toolkits . mplot3d import Axes3D  # 参数设置 n = 1 pi = np . pi  # 时空坐标计算 def spacetime_coordinates(t):     r = n / pi * t     x = r * np . cos(t) * np . cos(t)     y = r * np . sin(t) * np . cos(t)     z = r * np . sin(t)     w = r     return x , y , z , w   # 量子场与概率 def quantum_field(t , m):     u= 0   # 假设u_n-1为0 , 可根据实际情况修改     u = u + np . sin(t + m)     return u   # 概率分布 def probability_distribution():     m_values = [0 , 1 / 2 * pi , pi , 3 / 2 * pi]     probabilities = [0 . 125 , 0 . 125 , 0 . 125 , 0 . 125 , 0 . 5]     m = np . random . choice(m_values + [0] , p=probabilities)     return m   # 计算时空坐标和量子场值     t_values = np . linspace(0 , 2 * pi , 100)     coordinates = [spacetime_coordinates(t) for t in t_values]     quantum_fields = [quantum_field(t , probability_distribution()) for t in t_values]   # 绘制3D曲面 def plot_3d_surface(w_value):     fig = plt . figure()     ax = fig . add_subplot(111 , projection='3d')     x_values = []     y_values = []     z_values = []     u_values = []     for coord , field in zip(coordinates , quantum_fields):              x , y , z , w = coord     if w == w_value:              x_values . append(x)              y_values . append(y)              z_values . append(z)              u_values . append(field)              ax . scatter(x_values , y_values , z_values , c=u_values , cmap='viridis')              ax . set_xlabel('X')              ax . set_ylabel('Y')              ax . set_zlabel('Z')              ax . set_title(f'3D Surface for w = {w_value}')              plt . show()              plot_3d_surface(1)              plot_3d_surface(100)              input("Press any key to exit")
ข้อมูล
คำพรอมต์
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D  # 参数设置 n = 1 pi = np.pi  # 时空坐标计算 def spacetime_coordinates(t):     r = n / pi * t     x = r * np.cos(t) * np.cos(t)     y = r * np.sin(t) * np.cos(t)     z = r * np.sin(t)     w = r     return x, y, z, w   # 量子场与概率 def quantum_field(t, m):     u= 0   # 假设u_n-1为0,可根据实际情况修改     u = u + np.sin(t + m)     return u   # 概率分布 def probability_distribution():     m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi]     probabilities = [0.125, 0.125, 0.125, 0.125, 0.5]     m = np.random.choice(m_values + [0], p=probabilities)     return m   # 计算时空坐标和量子场值     t_values = np.linspace(0, 2 * pi, 100)     coordinates = [spacetime_coordinates(t) for t in t_values]     quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values]   # 绘制3D曲面 def plot_3d_surface(w_value):     fig = plt.figure()     ax = fig.add_subplot(111, projection='3d')     x_values = []     y_values = []     z_values = []     u_values = []     for coord, field in zip(coordinates, quantum_fields):              x, y, z, w = coord     if w == w_value:              x_values.append(x)              y_values.append(y)              z_values.append(z)              u_values.append(field)              ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis')              ax.set_xlabel('X')              ax.set_ylabel('Y')              ax.set_zlabel('Z')              ax.set_title(f'3D Surface for w = {w_value}')              plt.show()              plot_3d_surface(1)              plot_3d_surface(100)              input("Press any key to exit")
ป้ายลบ
(nsfw:1.5),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))
สเกล CFG
5
ขั้นตอน
30
เครื่องเก็บข้อมูล
DPM++ 2M Karras
เมล็ด
-1
Clip Skip
ขนาดรูปภาพ
2048 X 2048
ความเข้มข้นในการวาดซ้ำ
0.2
โมเดล
ReV Animated
สร้าง
ขนาด
2048X2048
วันที่
Jul 5, 2023
โหมด
เริ่มต้น
ประเภท
upscale
Checkpoint & LoRA
ReV Animated
Checkpoint
ReV Animated
#Anime
0 ความคิดเห็น
0
0
0

แอป SeaArt Swift AI

ai_video_generationimg
การสร้างวิดีโอด้วย AI

ปลดปล่อยจินตนาการของคุณและให้ AI สร้างสรรค์สิ่งมหัศจรรย์ทางภาพให้คุณ

face_swap_titleimg
เปลี่ยนใบหน้าออนไลน์ฟรี

สร้างวิดีโอและภาพถ่ายเปลี่ยนใบหน้าที่สนุกและสมจริงอย่างรวดเร็ว

fuse_anyoneimg
การหลอมรวมภาพด้วย AI

รวมภาพสองภาพเข้าด้วยกันเป็นภาพใหม่ที่น่าทึ่งด้วย AI Image Fusion

video_face_swapimg
เปลี่ยนใบหน้าวิดีโอ

สร้างวิดีโอที่สนุกสนานด้วยการเปลี่ยนใบหน้าในคลิปวิดีโอใด ๆ

changePersonimg
เปลี่ยนบุคคลในภาพถ่าย

เปลี่ยนตัวบุคคลในภาพถ่ายได้ง่ายด้วย AI

kiss_vidimg
วิดีโอเจนเนอเรเตอร์ AI สำหรับการจูบ

เข้าร่วมเทรนด์การจูบด้วยเครื่องสร้างวิดีโอจูบ AI ของ SeaArt ทันที สร้างให้คนสองคนจูบกันได้ง่ายๆ และสร้างภาพเคลื่อนไหวที่สมจริง

สำรวจแอป AI อื่นๆ เพิ่มเติม 

การแนะนำที่เกี่ยวข้อง

เครือข่ายควบคุม
แบบพิเศษ
avatar
N
narugo1992
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
B
BluePilotSuit
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
T
TOXBOX
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
P
avatar_frame
popopon
1
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
Anrah9s
2
2
เครือข่ายควบคุม
แบบพิเศษ
avatar
C
avatar_frame
cris p bacon
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
1
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
L
avatar_frame
Ladybug 08
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
N
avatar_frame
Number Shot
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
K
KEN2023
0
2
เครือข่ายควบคุม
แบบพิเศษ
avatar
と
とは
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
E
EQuin
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
M
Mob Dragon
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
1
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
B
BT8FY3
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
ミ
ミェンミェン
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
黃
黃國展
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
Q
avatar_frame
q5
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
T
tablet020
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
J
jim
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
K
K.I.
1
3
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
andoroid
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
К
avatar_frame
Котофей Котофеевич
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
B
B660
1
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
P
avatar_frame
popopon
1
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
O
avatar_frame
Okami Hut
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
1
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
子
子豪曾
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
B
BluePilotSuit
0
0
เครือข่ายควบคุม
แบบพิเศษ
avatar
M
Mob Dragon
0
1
เครือข่ายควบคุม
แบบพิเศษ
avatar
韩
韩大官人
5
12
เครือข่ายควบคุม
แบบพิเศษ
avatar
A
avatar_frame
AIporuru
1
1
เครือข่ายควบคุม
logo
ไทย
แอปพลิเคชัน
สร้างภาพ ตัวละคร AI Swift AI การฝึกโมเดล Canvas แอปพลิเคชันเร็ว กระบวนการทำงาน
สร้างเมื่อ {time}
สตูดิโอ ตารางคะแนน AI บล็อก AI ข่าว
ช่วยเหลือ
คู่มือ บริการลูกค้า
รับแอปพลิเคชัน
icon
Download on the
APP Store
icon
GET IT ON
Google Play
ติดตามเรา
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
"ข้อกำหนด"
"นโยบายความเป็นส่วนตัว" 特定商取引法 資金決済法に基づく表示
เพิ่มเติม