php调用Stable-Diffusion官方api实现ai自动搜索图片目标重绘代码
代码语言:php
所属分类:其他
代码描述:php调用Stable-Diffusion官方api实现ai自动搜索图片目标重绘代码,搜索提示词和操作提示词都需要提供,比如搜索目标“小狗”,提示词:换成小猫,他就会自动搜索照片内的小狗,重绘成小猫,无需mask标注。
代码标签: php 调用 Stable Diffusion 官方 api 自动 搜索 图片 目标 重绘 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<?php //申请地址:https://platform.stability.ai/account/keys $_apikey = ""; $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, "https://api.stability.ai/v2beta/stable-image/edit/search-and-replace"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FAILONERROR, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "authorization: Bearer ".$_apikey, "accept: image/*" ]); // Setting up the image to be sent along with the request $filePath = '/data/wwwroot/default/asset/man.png'; $post_fields = array( 'image' => new CURLFile($filePath), .........完整代码请登录后点击上方下载按钮下载查看
网友评论0