for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AhmadMayahi\Vision\Data;
/**
* The Vision API can detect and extract multiple objects in an image with Object Localization.
*
* @see https://cloud.google.com/vision/docs/object-localizer
*/
final class LocalizedObject
{
* @param NormalizedVertex[] $normalizedVertices
public function __construct(
public string $name,
public string $mid,
public string $languageCode,
public float $score,
public array $normalizedVertices,
) {
}