動画 画像
ログイン
Python スクリプトで生成するロゴが隠された風景

Python スクリプトで生成するロゴが隠された風景

A highly creative prompt formatted as a Python class to generate pareidolia-style landscapes where logos are hidden as negative space in the terrain.

回視聴773
いいね25
コメント5
シェア3
ブックマーク22
引用0
翻訳
2x2グリッド、異なる入力AとBを探す:class HiddenLogoLandscape:      def __init__(self, logo="{argument name="logo name" default="{Input A}"}", biome="{argument name="biome" default="{Input B}"}"):         self.logo = logo         self.biome = biome         self.scene = self.__infer__()          def __infer__(self):         s = Scene()         s.terrain = Terrain()         # カービングルール:メインロゴ形状はバイオーム表面のネガティブスペースドロップ         s.terrain.negative_carve = self.logo.main_body         s.terrain.negative_altitude = -150  # メートルドロップ         s.terrain.negative_texture = f"dark {self.biome.material} (shadowed forest, void canyon)"                  # 切り離されたパーツのための浮遊島         s.terrain.floating_islands = [{             "shape": part,             "material": f"{self.biome.material} floating landmass",             "altitude": +200,             "position": "suspended above main shape"         } for part in self.logo.detached_elements]                  s.atmosphere = "swirling clouds, mist, god rays backlight"         s.pareidolia = "edges formed organically by trees, cliffs, snow—no smooth vectors"         s .camera = "aerial drone, 1:1 framing, high contrast, cinematic"         return s      def render(self):         return NationalGeographicAerial(self.scene)  exec(HiddenLogoLandscape().render())

機械翻訳 — この作品を生成したのは元のプロンプトです。

✨ 生成 元の投稿 Hitboard で開く