更新时间:2024-04-23 GMT+08:00
分享

图像内容审核(V2)

  1. 本章节对图像内容审核AK/SK方式使用SDK进行示例说明。

    示例代码中可以使用Url或Image配置图像信息(代表使用url或者图像的base64),示例中以url为例配置完成后运行即可。

    项目ID的获取请参考获取项目ID

    <?php
    namespace HuaweiCloud\SDK\Moderation\V2\Model;
    require_once "vendor/autoload.php";
    use HuaweiCloud\SDK\Core\Auth\BasicCredentials;
    use HuaweiCloud\SDK\Core\Http\HttpConfig;
    use HuaweiCloud\SDK\Core\Exceptions\ConnectionException;
    use HuaweiCloud\SDK\Core\Exceptions\RequestTimeoutException;
    use HuaweiCloud\SDK\Core\Exceptions\ServiceResponseException;
    use HuaweiCloud\SDK\Moderation\V2\ModerationClient;
    // 认证用的ak和sk硬编码到代码中或者明文存储都有很大的安全风险,建议在配置文件或者环境变量中密文存放,使用时解密,确保安全;
    // 本示例以ak和sk保存在环境变量中来实现身份验证为例,运行本示例前请先在本地环境中设置环境变量HUAWEICLOUD_SDK_AK和HUAWEICLOUD_SDK_SK、HUAWEICLOUD_SDK_PROJECT_ID。 
    $ak = getenv('HUAWEICLOUD_SDK_AK');
    $sk = getenv('HUAWEICLOUD_SDK_SK');
    $projectId = getenv('HUAWEICLOUD_SDK_PROJECT_ID');
    
    $endpoint = "https://moderation.cn-north-4.myhuaweicloud.com";  //把cn-north-4替换成服务所在的区域。
    $credentials = new BasicCredentials($ak,$sk,$projectId);
    $config = HttpConfig::getDefaultConfig();
    $config->setIgnoreSslVerification(true);
     
    $client = ModerationClient::newBuilder(new ModerationClient)
      ->withHttpConfig($config)
      ->withEndpoint($endpoint)
      ->withCredentials($credentials)
      ->build();
    $request = new RunImageModerationRequest();
     
    $body = new ImageDetectionReq();
    $listbodyCategories = array();
    array_push($listbodyCategories,"terrorism");
    array_push($listbodyCategories,"porn");
    $body->setCategories($listbodyCategories);
    $body->setModerationRule("default");
    $body->setUrl("https://XXX.jpg");  //此处替换为公网可以访问的图片地址
    $request->setBody($body);
    try {
      $response = $client->RunImageModeration($request);
      echo "\n";
      echo $response;
    } catch (ConnectionException $e) {
      $msg = $e->getMessage();
      echo "\n". $msg ."\n";
    } catch (RequestTimeoutException $e) {
      $msg = $e->getMessage();
      echo "\n". $msg ."\n";
    } catch (ServiceResponseException $e) {
      echo "\n";
      echo $e->getHttpStatusCode(). "\n";
      echo $e->getErrorCode() . "\n";
      echo $e->getErrorMsg() . "\n";
    }
  2. 审核结果输出到控制台表示执行成功,图像内容审核结果输出到控制台。
    {"result": {"detail": { "porn": [{"confidence": 0.9883, "label": "normal"}, {"confidence": 0.0039, "label": "porn"}, {"confidence": 0.0078, "label": "sexy"}], "terrorism": [{"confidence": 0.0002, "label": "terrorist"}, {"confidence": 0.0002, "label": "fascist"}, {"confidence": 0.0001, "label": "cult"}, {"confidence": 0.0002}, {"confidence": 0.0001, "label": "kidnap"}, {"confidence": 0.0006, "label": "riot"}, {"confidence": 0.0001, "label": "parade"}, {"confidence": 0.0002, "label": "corpse"}, {"confidence": 0.0001, "label": "bloody"}, {"confidence": 0.0001, "label": "knife"}, {"confidence": 0.0001, "label": "gun"}, {"confidence": 0.0002, "label": "military_weapon"}, {"confidence": 0.0, "label": "special_characters"}, {"confidence": 0.9994, "label": "normal"}], "ad": [{"confidence": 0.0, "label": "ad"}, {"confidence": 1.0, "label": "normal"}]}, "suggestion": "pass", "category_suggestions": { "ad": "pass", "terrorism": "pass", "porn": "pass"}}}
分享:

    相关文档

    相关产品