> ## Documentation Index
> Fetch the complete documentation index at: https://ailabtools.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Skin Analyze Advanced

> Skin Analyze Advanced API detects skin type, tone, eye bags, dark circles, wrinkles, acne, spots, and other skin conditions.

export const FileStoragePolicy = ({uploadedFiles, responseType}) => {
  const responseFileData = {
    URL: {
      stored: "Yes",
      retention: "24 Hours",
      deletion: "Automatic"
    },
    BASE64: {
      stored: "No",
      retention: "N/A",
      deletion: "Immediate"
    }
  };
  if (!uploadedFiles && !responseType) return null;
  return <div>
      <table>
        <thead>
          <tr>
            <th>Data Type</th>
            <th>Stored</th>
            <th>Retention</th>
            <th>Training</th>
            <th>Deletion</th>
          </tr>
        </thead>
        <tbody>
          {uploadedFiles && <tr>
              <td>Uploaded Files</td>
              <td>No</td>
              <td>N/A</td>
              <td>No</td>
              <td>Immediate</td>
            </tr>}
          {responseType && responseFileData?.[responseType] && <tr>
              <td>Response Files ({responseType})</td>
              <td>{responseFileData[responseType]['stored']}</td>
              <td>{responseFileData[responseType]['retention']}</td>
              <td>No</td>
              <td>{responseFileData[responseType]['deletion']}</td>
            </tr>}
        </tbody>
      </table>

      <Tip>
        For more information, see the{" "}<a href="/docs/file-storage-policy">File Storage Policy</a> and{" "}<a href="https://www.ailabtools.com/privacy-policy" target="_blank">Privacy Policy</a>.
      </Tip>
    </div>;
};

export const BillingInstructions = ({creditsPerRequest = 1}) => {
  const creditUnitPrice = 0.0027;
  const billingTiers = [{
    price: 6,
    credits: 2000,
    costPerCredit: 0.003
  }, {
    price: 30,
    credits: 10000,
    costPerCredit: 0.003
  }, {
    price: 300,
    credits: 110000,
    costPerCredit: 0.0027
  }, {
    price: 1500,
    credits: 550000,
    costPerCredit: 0.0027
  }, {
    price: 2500,
    credits: 1000000,
    costPerCredit: 0.0025
  }];
  const formatCurrency = (value, fractionDigits = 2) => value.toLocaleString("en-US", {
    style: "currency",
    currency: "USD",
    minimumFractionDigits: fractionDigits,
    maximumFractionDigits: fractionDigits
  });
  const formatNumber = (value, fractionDigits = 0) => value.toLocaleString("en-US", {
    minimumFractionDigits: fractionDigits,
    maximumFractionDigits: fractionDigits
  });
  return <>
      <table>
        <thead>
          <tr>
            <th style={{
    textAlign: "right"
  }}>Price</th>
            <th style={{
    textAlign: "right"
  }}>Requests</th>
            <th style={{
    textAlign: "right"
  }}>Cost / Request</th>
          </tr>
        </thead>
        <tbody>
          {billingTiers.map(tier => {
    const requests = tier.credits / creditsPerRequest;
    const costPerRequest = tier.costPerCredit * creditsPerRequest;
    return <tr key={tier.credits}>
                <td style={{
      textAlign: "right"
    }}>{formatCurrency(tier.price)}</td>
                <td style={{
      textAlign: "right"
    }}>{formatNumber(requests)}</td>
                <td style={{
      textAlign: "right"
    }}>
                  {formatCurrency(costPerRequest, 4)}
                </td>
              </tr>;
  })}
        </tbody>
      </table>

      <Tip>
        Each successful API request consumes{" "}<strong>{creditsPerRequest} credits (≈{" "}{formatCurrency(creditUnitPrice * creditsPerRequest, 4)})</strong>. Failed requests are not billed.

        <ul>
          <li>
            View pricing on the{" "}<a href="https://www.ailabtools.com/price?tab=api" target="_blank">pricing page</a>{" "}or manage credits in the{" "}<a href="https://www.ailabtools.com/developer/billing" target="_blank">developer platform</a>.
          </li>
          <li>
            Need more credits or an enterprise plan? Contact{" "}<a href="mailto:business@ailabtools.com">business@ailabtools.com</a>.
          </li>
        </ul>
      </Tip>
    </>;
};

## Billing Instructions

<BillingInstructions creditsPerRequest={50} />

## File Storage Policy

<FileStoragePolicy uploadedFiles responseType="BASE64" />

## Function List

| Functions      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | Corresponding parameters |
| :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------- |
| Face Detection | Detect face and position                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | `face_rectangle`         |
| Skin Analysis  | `Skin Tone Classification: (Translucent White, Fair, Natural, Wheatish, Dark)`, `Skin Undertone Classification: (Translucent White, Fair, Medium Natural Skin Tone, Wheatish, Brown, Deep Brown, Abnormal Color Values)`, `Skin Sensitivity Level and Areas: (Only identifying "Red Zones")`, `Skin Type: (Oily Skin, Dry Skin, Normal Skin, Combination Skin)`, `Presence and Location of Closed Comedones`, `Presence and Severity Analysis of Blackheads`, `Presence and Location of Acne`, `Presence and Location of Moles`, `Presence and Location of Spots`, `Presence and Type Analysis of Dark Circles`, `Presence and Severity Analysis of Eye Bags`, `Eyelid Type (Monolid, Parallel Double Eyelids, Fan-shaped Double Eyelids)`, `Presence of Forehead Wrinkles`, `Presence of Crow’s Feet`, `Presence of Fine Lines around the Eyes`, `Presence of Glabellar Lines`, `Presence and Severity Analysis of Nasolabial Folds`, `Presence and Severity Analysis of Enlarged Forehead Pores`, `Presence and Severity Analysis of Enlarged Pores on the Left Cheek`, `Presence and Severity Analysis of Enlarged Pores on the Right Cheek`, `Presence and Severity Analysis of Enlarged Pores on the Chin`, `Skin Age Analysis` | `result`                 |

## Comparison of the functional items of the Basic, Advanced and Professional editions

<table className="border border-collapse border-gray-300">
  <thead>
    <tr>
      <th className="max-w-[200px] whitespace-pre-line border border-gray-300">Function items</th>
      <th className="border border-gray-300">[Skin Analyze](/docs/ai-portrait/analysis/skin-analysis)</th>
      <th className="border border-gray-300">[Skin Analyze Advanced](/docs/ai-portrait/analysis/skin-analysis-advanced)</th>
      <th className="border border-gray-300">[Skin Analyze Pro](/docs/ai-portrait/analysis/skin-analysis-pro)</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Double eyelid test for left and right eyes</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>

      <td className="text-center border border-gray-300" />
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Acne Detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Location Analysis</td>

      <td className="text-center border border-gray-300" />
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pore Detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Degree analysis</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Type</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Analysis of the degree of oil production</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Face Fine Lines Detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Analysis of the degree of forehead lines</td>
      <td className="text-center border border-gray-300">✅<br />Analysis of the degree of forehead lines</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Eye bags, dark circles detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Degree, type analysis</td>
      <td className="text-center border border-gray-300">✅<br />Degree, type analysis</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Mole and spot detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Location Analysis</td>
      <td className="text-center border border-gray-300">✅<br />Detailed location analysis</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Blackhead Detection</td>
      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Degree analysis</td>
      <td className="text-center border border-gray-300">✅<br />Extent, quantitative analysis</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin color classification</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin tone classification</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Age Analysis</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Closure detection</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
      <td className="text-center border border-gray-300">✅<br />Acne analysis, detailed</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Sensitive Area Detection</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅<br />Red Zone</td>
      <td className="text-center border border-gray-300">✅<br />Red zone, brown zone, texture enhancing pores and lines</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Sore Control Testing</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Number of fine lines and area detection</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
    </tr>

    <tr>
      <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Analysis of the degree of skin pigmentation</td>

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300" />

      <td className="text-center border border-gray-300">✅</td>
    </tr>
  </tbody>
</table>

## Comparison of the inspection items of Basic, Advanced and Professional editions

<table className="border border-collapse border-gray-300">
  <tr>
    <th className="max-w-[200px] whitespace-pre-line border border-gray-300">Category</th>
    <th className="max-w-[200px] whitespace-pre-line border border-gray-300">Inspection items</th>
    <th className="border border-gray-300">[Skin Analyze](/docs/ai-portrait/analysis/skin-analysis)</th>
    <th className="border border-gray-300">[Skin Analyze Advanced](/docs/ai-portrait/analysis/skin-analysis-advanced)</th>
    <th className="border border-gray-300">[Skin Analyze Pro](/docs/ai-portrait/analysis/skin-analysis-pro)</th>
  </tr>

  <tr>
    <td rowSpan="3" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Type</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Type IV Classification</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Oil-out area detection</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Oil shine detection chart, area share & severity</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Moisture testing</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Moisture detection map, area share & severity</td>
  </tr>

  <tr>
    <td rowSpan="3" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin color</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Five categories of skin color</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin color ITA classification</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Skin Tone HA Classification</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td rowSpan="4" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Roughness</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pore size detection</td>
    <td className="text-center border border-gray-300">✅ <br /> Pore size detection</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> Size & number & severity classification & score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Blackhead Detection</td>
    <td className="text-center border border-gray-300">✅ <br /> Detects the presence or absence of</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> Size & number & severity classification & score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pore blackhead black and white enhancement chart</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Texture detection</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Texture area percentage & severity score</td>
  </tr>

  <tr>
    <td rowSpan="3" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pigmentation</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pigmentation Detection</td>
    <td className="text-center border border-gray-300">✅ <br /> Detects the presence or absence of</td>
    <td className="text-center border border-gray-300">✅ <br /> Rectangular area</td>
    <td className="text-center border border-gray-300">✅ <br /> Rectangular area + polygon</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Pigmentation</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Percentage of pigmentation area & severity score, area detection map, contour coordinates</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Mole Detection</td>
    <td className="text-center border border-gray-300">✅ <br /> Detects the presence or absence of</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> Rectangular box + polygon</td>
  </tr>

  <tr>
    <td rowSpan="3" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Acne</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Acne with or without</td>
    <td className="text-center border border-gray-300">✅</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Acne Regional Detection</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Rectangular area</td>
    <td className="text-center border border-gray-300">✅ <br /> Rectangular area + polygon</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Acne grading</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Detects acne and xerostomia only, output rectangular area</td>
    <td className="text-center border border-gray-300">✅ <br /> Detection of occlusive acne papules, pustules, nodules, output rectangular area + polygon, severity and score</td>
  </tr>

  <tr>
    <td rowSpan="4" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Sensitivity</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Red Zone Map</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Red Zone Detection</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Sensitive area coordinates + polygon box</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Sensitive area size</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Sensitivity level</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td rowSpan="11" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Senility</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Raised Head Lines</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Normal lines (left and right)</td>
    <td className="text-center border border-gray-300">✅ <br /> With or without classification</td>
    <td className="text-center border border-gray-300">✅ <br /> Severity</td>
    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Crow's feet (left and right)</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Fine lines under the eyes (left and right)</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Corners of the mouth lines (left and right)</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Lines between the eyebrows</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">forehead wrinkles</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Cheek lines (left and right)</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> 12 detailed parameters such as severity and score</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Wrinkles & Fine Lines Detection</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Severity and mapping</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Jawline</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Mandibular line angle and coordinates</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Apple muscle</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅ <br /> Apple muscle coordinates</td>
  </tr>

  <tr>
    <td rowSpan="2" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Eye Problems</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Dark Eye Circles Classification</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅</td>
    <td className="text-center border border-gray-300">✅ <br /> Left and right eye severity, type, and contour line coordinates</td>
  </tr>

  <tr>
    <td className="text-center border border-gray-300">Eye bags classification</td>
    <td className="text-center border border-gray-300">✅ <br /> With or without classification</td>
    <td className="text-center border border-gray-300">✅ <br /> Severity</td>
    <td className="text-center border border-gray-300">✅ <br /> Severity, contour line coordinates</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Customization</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Contour color customization</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Scoring System</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Individual function scores</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td rowSpan="5" className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Image quality</td>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Face coordinate values</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Face Size Ratio</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Percentage of bangs</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Face angle value</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>

  <tr>
    <td className="text-center max-w-[200px] whitespace-pre-line border border-gray-300">Determine whether glasses are worn.</td>

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300" />

    <td className="text-center border border-gray-300">✅</td>
  </tr>
</table>

## Application Scenarios

* **Smart Beauty Analysis**
* **Recommended Beauty Products**

## Featured Advantages

* **Rich analysis dimension**
* **Comprehensive coverage of skin characteristics**
* **Numerical analysis of findings**
